From 36062528a632cfae6eabce97d19f88bf126a06d8 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Thu, 9 Jan 2025 10:15:16 +0000 Subject: [PATCH 01/19] Support map_x.dat files using uncompressed NBT --- .../java/base/reader/JavaLevelReader.java | 4 +-- .../java/com/hivemc/chunker/nbt/tags/Tag.java | 30 ++++++++++++++++ .../hivemc/chunker/nbt/JavaNBTFileTests.java | 34 +++++++++++++++++++ 3 files changed, 66 insertions(+), 2 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaLevelReader.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaLevelReader.java index 31c0f0a..e53422f 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaLevelReader.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/JavaLevelReader.java @@ -485,7 +485,7 @@ protected void parseMaps(ChunkerLevel output) { protected ChunkerMap parseMap(File mapFile) { try { // Read the file - CompoundTag mapCompound = Tag.readGZipJavaNBT(mapFile); + CompoundTag mapCompound = Tag.readPossibleGZipJavaNBT(mapFile); if (mapCompound == null) return null; // Failed to parse // Remove the map_ prefix and the .dat suffix @@ -515,7 +515,7 @@ protected ChunkerMap parseMap(File mapFile) { return map; } catch (Exception e) { - converter.logNonFatalException(e); + converter.logNonFatalException(new Exception("Could not read map " + mapFile.getName(), e)); return null; } } diff --git a/cli/src/main/java/com/hivemc/chunker/nbt/tags/Tag.java b/cli/src/main/java/com/hivemc/chunker/nbt/tags/Tag.java index eb1ba2d..7bedd23 100644 --- a/cli/src/main/java/com/hivemc/chunker/nbt/tags/Tag.java +++ b/cli/src/main/java/com/hivemc/chunker/nbt/tags/Tag.java @@ -466,6 +466,36 @@ public static CompoundTag readGZipJavaNBT(File file) throws IOException { } } + /** + * Read a Java edition based NBT file which may use GZip (likely ending with .dat) automatically removing the nested "data" tag if + * present. + * + * @param file the input file to read from. + * @return the parsed CompoundTag or null if there isn't any data to read. + * @throws IOException if it failed to read the file or compound. + */ + @Nullable + public static CompoundTag readPossibleGZipJavaNBT(File file) throws IOException { + // Check the first two bytes of the file + boolean gzip = false; + try (FileInputStream fileInputStream = new FileInputStream(file)) { + byte[] firstBytes = new byte[2]; + + // If the bytes were read, check if the header matches the gzip magic + if (fileInputStream.read(firstBytes) == firstBytes.length) { + int header = ((firstBytes[1] & 0xFF) << 8) | (firstBytes[0] & 0xFF); + gzip = header == GZIPInputStream.GZIP_MAGIC; + } + } + + // If the header is present, read it as gzipped NBT + if (gzip) { + return Tag.readGZipJavaNBT(file); + } else { + return Tag.readUncompressedJavaNBT(file); + } + } + /** * Read a Java edition based ZLIB NBT bytes automatically removing the nested "data" tag if * present. diff --git a/cli/src/test/java/com/hivemc/chunker/nbt/JavaNBTFileTests.java b/cli/src/test/java/com/hivemc/chunker/nbt/JavaNBTFileTests.java index 9352137..aa5bc4e 100644 --- a/cli/src/test/java/com/hivemc/chunker/nbt/JavaNBTFileTests.java +++ b/cli/src/test/java/com/hivemc/chunker/nbt/JavaNBTFileTests.java @@ -34,6 +34,12 @@ void testJavaLevelDat() throws IOException { assertNotNull(Tag.readGZipJavaNBT(input)); } + @Test + void testJavaLevelDatWithPossibly() throws IOException { + File input = getTempFileForResource("nbt/java_level.dat"); + assertNotNull(Tag.readPossibleGZipJavaNBT(input)); + } + @Test void testJavaLevelDatTypeByte() throws IOException { File input = getTempFileForResource("nbt/java_level.dat"); @@ -186,6 +192,20 @@ void testJavaDecodeEncodeGZIP() throws IOException { assertEquals(nbt, readNBT); } + @Test + void testJavaDecodePossiblyEncodeGZIP() throws IOException { + File input = getTempFileForResource("nbt/java_level.dat"); + CompoundTag nbt = Tag.readPossibleGZipJavaNBT(input); + + // Write to temp file + File tempFile = tempFile(); + Tag.writeGZipJavaNBT(tempFile, nbt); + + // Read it back + CompoundTag readNBT = Tag.readGZipJavaNBT(tempFile); + assertEquals(nbt, readNBT); + } + @Test void testJavaDecodeEncodeBytesGZIP() throws IOException { File input = getTempFileForResource("nbt/java_level.dat"); @@ -253,6 +273,20 @@ void testJavaDecodeEncodeUncompressed() throws IOException { assertEquals(nbt, readNBT); } + @Test + void testJavaDecodePossiblyEncodeUncompressed() throws IOException { + File input = getTempFileForResource("nbt/java_level.dat"); + CompoundTag nbt = Tag.readGZipJavaNBT(input); + + // Write to temp file + File tempFile = tempFile(); + Tag.writeUncompressedJavaNBT(tempFile, nbt); + + // Read it back + CompoundTag readNBT = Tag.readPossibleGZipJavaNBT(tempFile); + assertEquals(nbt, readNBT); + } + @Test void testJavaDecodeEncodeBytesUncompressed() throws IOException { File input = getTempFileForResource("nbt/java_level.dat"); From e05fb6036efd646266ef299cabe41b3490a92d92 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Thu, 9 Jan 2025 10:16:24 +0000 Subject: [PATCH 02/19] Fix map colours from Java -> Bedrock not converting correctly --- .../java/base/resolver/itemstack/JavaMapColorsResolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaMapColorsResolver.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaMapColorsResolver.java index 7d0aa63..2b54d8b 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaMapColorsResolver.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/resolver/itemstack/JavaMapColorsResolver.java @@ -148,10 +148,10 @@ public Optional from(byte[] chunkerMapColors) { public Optional to(byte[] javaMapColors) { byte[] outputBytes = new byte[javaMapColors.length << 2]; // 4 bytes per color instead of 1 for (int i = 0; i < javaMapColors.length; i++) { - byte value = javaMapColors[i]; + int value = javaMapColors[i] & 0xFF; // Convert to RGB - if (value >= 0 && value < mapColorsShaded.length) { + if (value < mapColorsShaded.length) { Color rgba = mapColorsShaded[value]; int newIndex = i << 2; From 37a44a944a9e36c3f4f9fc97bdd9b537a6509504 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 10 Jan 2025 07:11:49 +0000 Subject: [PATCH 03/19] Bump wait-on from 8.0.1 to 8.0.2 in /app Bumps [wait-on](https://github.com/jeffbski/wait-on) from 8.0.1 to 8.0.2. - [Release notes](https://github.com/jeffbski/wait-on/releases) - [Commits](https://github.com/jeffbski/wait-on/compare/v8.0.1...v8.0.2) --- app/package-lock.json | 19 +++++++++++-------- app/package.json | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index ef04327..8c751db 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -9,7 +9,7 @@ "devDependencies": { "concurrently": "^9.1.2", "cross-env": "^7.0.3", - "wait-on": "^8.0.1" + "wait-on": "^8.0.2" }, "workspaces": { "packages": [ @@ -5370,9 +5370,10 @@ } }, "node_modules/axios": { - "version": "1.7.7", + "version": "1.7.9", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", + "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", "dev": true, - "license": "MIT", "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", @@ -15271,8 +15272,9 @@ }, "node_modules/proxy-from-env": { "version": "1.1.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true }, "node_modules/psl": { "version": "1.9.0", @@ -18564,11 +18566,12 @@ } }, "node_modules/wait-on": { - "version": "8.0.1", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-8.0.2.tgz", + "integrity": "sha512-qHlU6AawrgAIHlueGQHQ+ETcPLAauXbnoTKl3RKq20W0T8x0DKVAo5xWIYjHSyvHxQlcYbFdR0jp4T9bDVITFA==", "dev": true, - "license": "MIT", "dependencies": { - "axios": "^1.7.7", + "axios": "^1.7.9", "joi": "^17.13.3", "lodash": "^4.17.21", "minimist": "^1.2.8", diff --git a/app/package.json b/app/package.json index e0d406f..ce7eac7 100644 --- a/app/package.json +++ b/app/package.json @@ -18,6 +18,6 @@ "devDependencies": { "concurrently": "^9.1.2", "cross-env": "^7.0.3", - "wait-on": "^8.0.1" + "wait-on": "^8.0.2" } } From 1aca87475c340e0a5faa8e05d3af7676cc6ec518 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 8 Jan 2025 07:10:34 +0000 Subject: [PATCH 04/19] Bump azure/trusted-signing-action from 0.5.0 to 0.5.1 Bumps [azure/trusted-signing-action](https://github.com/azure/trusted-signing-action) from 0.5.0 to 0.5.1. - [Release notes](https://github.com/azure/trusted-signing-action/releases) - [Commits](https://github.com/azure/trusted-signing-action/compare/v0.5.0...v0.5.1) --- .github/workflows/build_platform.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_platform.yml b/.github/workflows/build_platform.yml index 2e8c118..059d288 100644 --- a/.github/workflows/build_platform.yml +++ b/.github/workflows/build_platform.yml @@ -77,7 +77,7 @@ jobs: run: ./gradlew build -x test - name: Sign exe with Trusted Signing - uses: azure/trusted-signing-action@v0.5.0 + uses: azure/trusted-signing-action@v0.5.1 if: github.repository == 'HiveGamesOSS/Chunker' with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} @@ -93,7 +93,7 @@ jobs: timestamp-digest: SHA256 - name: Sign unpacked with Trusted Signing - uses: azure/trusted-signing-action@v0.5.0 + uses: azure/trusted-signing-action@v0.5.1 if: github.repository == 'HiveGamesOSS/Chunker' with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b1a7805..83b225a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,7 +76,7 @@ jobs: run: ./gradlew build -x test - name: Sign exe with Trusted Signing - uses: azure/trusted-signing-action@v0.5.0 + uses: azure/trusted-signing-action@v0.5.1 if: github.repository == 'HiveGamesOSS/Chunker' with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} @@ -92,7 +92,7 @@ jobs: timestamp-digest: SHA256 - name: Sign unpacked with Trusted Signing - uses: azure/trusted-signing-action@v0.5.0 + uses: azure/trusted-signing-action@v0.5.1 if: github.repository == 'HiveGamesOSS/Chunker' with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} From a8c353c24ac546e83f696ef1afd6c0eb68ce953a Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 8 Jan 2025 09:28:09 +0000 Subject: [PATCH 05/19] Bump electron from 33.2.1 to 33.3.1 in /app Bumps [electron](https://github.com/electron/electron) from 33.2.1 to 33.3.1. - [Release notes](https://github.com/electron/electron/releases) - [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md) - [Commits](https://github.com/electron/electron/compare/v33.2.1...v33.3.1) --- app/electron/package.json | 2 +- app/package-lock.json | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/electron/package.json b/app/electron/package.json index 9cc0567..f29aea2 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -15,7 +15,7 @@ "homepage": "https://github.com/HiveGamesOSS/Chunker", "license": "MIT", "devDependencies": { - "electron": "33.2.1", + "electron": "33.3.1", "electron-builder": "25.0.5", "git-last-commit": "^1.0.1" }, diff --git a/app/package-lock.json b/app/package-lock.json index 8c751db..da001b3 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -30,7 +30,7 @@ "jszip": "^3.10.1" }, "devDependencies": { - "electron": "33.2.1", + "electron": "33.3.1", "electron-builder": "25.0.5", "git-last-commit": "^1.0.1" }, @@ -7676,10 +7676,11 @@ } }, "node_modules/electron": { - "version": "33.2.1", + "version": "33.3.1", + "resolved": "https://registry.npmjs.org/electron/-/electron-33.3.1.tgz", + "integrity": "sha512-Z7l2bVgpdKxHQMI4i0CirBX2n+iCYKOx5mbzNM3BpOyFELwlobEXKmzCmEnwP+3EcNeIhUQyIEBFQxN06QgdIw==", "dev": true, "hasInstallScript": true, - "license": "MIT", "dependencies": { "@electron/get": "^2.0.0", "@types/node": "^20.9.0", From 800cc02220c812e6211b48325f47d4fa1232f675 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Wed, 15 Jan 2025 07:23:03 +0000 Subject: [PATCH 06/19] Bump electron from 33.3.1 to 34.0.0 in /app Bumps [electron](https://github.com/electron/electron) from 33.3.1 to 34.0.0. - [Release notes](https://github.com/electron/electron/releases) - [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md) - [Commits](https://github.com/electron/electron/compare/v33.3.1...v34.0.0) --- app/electron/package.json | 2 +- app/package-lock.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/electron/package.json b/app/electron/package.json index f29aea2..de4b102 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -15,7 +15,7 @@ "homepage": "https://github.com/HiveGamesOSS/Chunker", "license": "MIT", "devDependencies": { - "electron": "33.3.1", + "electron": "34.0.0", "electron-builder": "25.0.5", "git-last-commit": "^1.0.1" }, diff --git a/app/package-lock.json b/app/package-lock.json index da001b3..14148e1 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -30,7 +30,7 @@ "jszip": "^3.10.1" }, "devDependencies": { - "electron": "33.3.1", + "electron": "34.0.0", "electron-builder": "25.0.5", "git-last-commit": "^1.0.1" }, @@ -7676,9 +7676,9 @@ } }, "node_modules/electron": { - "version": "33.3.1", - "resolved": "https://registry.npmjs.org/electron/-/electron-33.3.1.tgz", - "integrity": "sha512-Z7l2bVgpdKxHQMI4i0CirBX2n+iCYKOx5mbzNM3BpOyFELwlobEXKmzCmEnwP+3EcNeIhUQyIEBFQxN06QgdIw==", + "version": "34.0.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-34.0.0.tgz", + "integrity": "sha512-fpaPb0lifoUJ6UJa4Lk8/0B2Ku/xDZWdc1Gkj67jbygTCrvSon0qquju6Ltx1Kz23GRqqlIHXiy9EvrjpY7/Wg==", "dev": true, "hasInstallScript": true, "dependencies": { From 0071053162174782afc94524a43626c6528b6fcc Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Thu, 16 Jan 2025 07:20:51 +0000 Subject: [PATCH 07/19] Bump fs-extra from 11.2.0 to 11.3.0 in /app Bumps [fs-extra](https://github.com/jprichardson/node-fs-extra) from 11.2.0 to 11.3.0. - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.2.0...11.3.0) --- app/electron/package.json | 2 +- app/package-lock.json | 386 +++++--------------------------------- 2 files changed, 50 insertions(+), 338 deletions(-) diff --git a/app/electron/package.json b/app/electron/package.json index de4b102..48ebe0d 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -59,7 +59,7 @@ "archiver": "^7.0.1", "electron-dl": "^4.0.0", "electron-log": "^5.2.4", - "fs-extra": "^11.2.0", + "fs-extra": "^11.3.0", "jszip": "^3.10.1" }, "optionalDependencies": { diff --git a/app/package-lock.json b/app/package-lock.json index 14148e1..59358ec 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -26,7 +26,7 @@ "archiver": "^7.0.1", "electron-dl": "^4.0.0", "electron-log": "^5.2.4", - "fs-extra": "^11.2.0", + "fs-extra": "^11.3.0", "jszip": "^3.10.1" }, "devDependencies": { @@ -38,35 +38,6 @@ "dmg-license": "^1.0.11" } }, - "electron/node_modules/fs-extra": { - "version": "11.2.0", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "electron/node_modules/jsonfile": { - "version": "6.1.0", - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "electron/node_modules/universalify": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "license": "MIT", @@ -2298,6 +2269,38 @@ "global-agent": "^3.0.0" } }, + "node_modules/@electron/get/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@electron/get/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@electron/get/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/@electron/notarize": { "version": "2.3.2", "dev": true, @@ -2325,25 +2328,6 @@ "node": ">=10" } }, - "node_modules/@electron/notarize/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron/notarize/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron/osx-sign": { "version": "1.3.1", "dev": true, @@ -2388,25 +2372,6 @@ "url": "https://github.com/sponsors/gjtorikian/" } }, - "node_modules/@electron/osx-sign/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron/osx-sign/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron/rebuild": { "version": "3.6.0", "dev": true, @@ -2447,17 +2412,6 @@ "node": ">=12" } }, - "node_modules/@electron/rebuild/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/@electron/rebuild/node_modules/semver": { "version": "7.6.3", "dev": true, @@ -2469,14 +2423,6 @@ "node": ">=10" } }, - "node_modules/@electron/rebuild/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@electron/universal": { "version": "2.0.1", "dev": true, @@ -2494,30 +2440,6 @@ "node": ">=16.4" } }, - "node_modules/@electron/universal/node_modules/fs-extra": { - "version": "11.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/@electron/universal/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/@electron/universal/node_modules/minimatch": { "version": "9.0.5", "dev": true, @@ -2532,14 +2454,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@electron/universal/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@emotion/babel-plugin": { "version": "11.11.0", "license": "MIT", @@ -3383,25 +3297,6 @@ "node": ">=10" } }, - "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@malept/flatpak-bundler/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { "version": "5.1.1-v1", "license": "MIT", @@ -4970,17 +4865,6 @@ "node": ">=12" } }, - "node_modules/app-builder-lib/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/app-builder-lib/node_modules/minimatch": { "version": "10.0.1", "dev": true, @@ -5006,14 +4890,6 @@ "node": ">=10" } }, - "node_modules/app-builder-lib/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/aproba": { "version": "2.0.0", "dev": true, @@ -5897,25 +5773,6 @@ "node": ">=12" } }, - "node_modules/builder-util/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/builder-util/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/builtin-modules": { "version": "3.3.0", "license": "MIT", @@ -7488,25 +7345,6 @@ "node": ">=12" } }, - "node_modules/dmg-builder/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/dmg-builder/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/dmg-license": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", @@ -7871,18 +7709,6 @@ "license": "MIT", "peer": true }, - "node_modules/electron-builder-squirrel-windows/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/electron-builder-squirrel-windows/node_modules/minimatch": { "version": "3.1.2", "dev": true, @@ -7940,15 +7766,6 @@ "node": ">=6" } }, - "node_modules/electron-builder-squirrel-windows/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/electron-builder-squirrel-windows/node_modules/zip-stream": { "version": "4.1.1", "dev": true, @@ -7997,25 +7814,6 @@ "node": ">=12" } }, - "node_modules/electron-builder/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/electron-builder/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/electron-dl": { "version": "4.0.0", "license": "MIT", @@ -8065,25 +7863,6 @@ "node": ">=12" } }, - "node_modules/electron-publish/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/electron-publish/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/electron-to-chromium": { "version": "1.4.816", "license": "ISC" @@ -9533,16 +9312,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/jsonfile": { - "version": "6.1.0", - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/minimatch": { "version": "3.1.2", "license": "ISC", @@ -9586,13 +9355,6 @@ "node": ">=6" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/universalify": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/form-data": { "version": "4.0.0", "dev": true, @@ -9644,16 +9406,16 @@ "peer": true }, "node_modules/fs-extra": { - "version": "8.1.0", - "dev": true, - "license": "MIT", + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", + "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">=14.14" } }, "node_modules/fs-minipass": { @@ -12351,9 +12113,12 @@ } }, "node_modules/jsonfile": { - "version": "4.0.0", - "dev": true, - "license": "MIT", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -15692,16 +15457,6 @@ "node": ">=12" } }, - "node_modules/react-scripts/node_modules/jsonfile": { - "version": "6.1.0", - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/react-scripts/node_modules/semver": { "version": "7.6.2", "license": "ISC", @@ -15712,13 +15467,6 @@ "node": ">=10" } }, - "node_modules/react-scripts/node_modules/universalify": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/react-select": { "version": "5.9.0", "license": "MIT", @@ -17791,25 +17539,6 @@ "node": ">=12" } }, - "node_modules/temp-file/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/temp-file/node_modules/universalify": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/tempy": { "version": "0.6.0", "license": "MIT", @@ -18360,11 +18089,11 @@ } }, "node_modules/universalify": { - "version": "0.1.2", - "dev": true, - "license": "MIT", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "engines": { - "node": ">= 4.0.0" + "node": ">= 10.0.0" } }, "node_modules/unpipe": { @@ -19128,16 +18857,6 @@ "version": "1.0.0", "license": "MIT" }, - "node_modules/workbox-build/node_modules/jsonfile": { - "version": "6.1.0", - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/workbox-build/node_modules/minimatch": { "version": "3.1.2", "license": "ISC", @@ -19165,13 +18884,6 @@ "punycode": "^2.1.0" } }, - "node_modules/workbox-build/node_modules/universalify": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/workbox-build/node_modules/webidl-conversions": { "version": "4.0.2", "license": "BSD-2-Clause" From 32fc4269f956632a62f6835f0aa88593351bb6d3 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Fri, 17 Jan 2025 07:42:55 +0000 Subject: [PATCH 08/19] Bump react-router-dom from 7.1.1 to 7.1.2 in /app Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 7.1.1 to 7.1.2. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.1.2/packages/react-router-dom) --- app/package-lock.json | 16 ++++++++-------- app/ui/package.json | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/package-lock.json b/app/package-lock.json index 59358ec..5370180 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -15329,9 +15329,9 @@ } }, "node_modules/react-router": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.1.1.tgz", - "integrity": "sha512-39sXJkftkKWRZ2oJtHhCxmoCrBCULr/HAH4IT5DHlgu/Q0FCPV0S4Lx+abjDTx/74xoZzNYDYbOZWlJjruyuDQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.1.2.tgz", + "integrity": "sha512-KeallSO30KLpIe/ZZqfk6pCJ1c+5JhMxl3SCS3Zx1LgaGuQbgLDmjuNi6KZ5LnAV9sWjbmBWGRw8Um/Pw6BExg==", "dependencies": { "@types/cookie": "^0.6.0", "cookie": "^1.0.1", @@ -15352,11 +15352,11 @@ } }, "node_modules/react-router-dom": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.1.1.tgz", - "integrity": "sha512-vSrQHWlJ5DCfyrhgo0k6zViOe9ToK8uT5XGSmnuC2R3/g261IdIMpZVqfjD6vWSXdnf5Czs4VA/V60oVR6/jnA==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.1.2.tgz", + "integrity": "sha512-kE7JdrDfeWO/2d6RPucLmqp2UL8Isv1VWtI5MQyYNA99KtncqxWDL6550+0rH4fboJKJbXRcyjRnIRT/gkxTcA==", "dependencies": { - "react-router": "7.1.1" + "react-router": "7.1.2" }, "engines": { "node": ">=20.0.0" @@ -19216,7 +19216,7 @@ "leaflet-mouse-position": "^1.2.0", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-router-dom": "^7.1.1", + "react-router-dom": "^7.1.2", "react-scripts": "^5.0.1", "react-select": "^5.9.0", "react-syntax-highlighter": "^15.6.1", diff --git a/app/ui/package.json b/app/ui/package.json index fc1761f..de9d93e 100644 --- a/app/ui/package.json +++ b/app/ui/package.json @@ -24,7 +24,7 @@ "leaflet-mouse-position": "^1.2.0", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-router-dom": "^7.1.1", + "react-router-dom": "^7.1.2", "react-scripts": "^5.0.1", "react-select": "^5.9.0", "react-syntax-highlighter": "^15.6.1", From 6bfc4b85496d6b3fc1fa4166ebfb759b67cced2c Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 19 Jan 2025 14:50:18 +0000 Subject: [PATCH 09/19] Add initial support for Bedrock 1.21.60 --- README.md | 2 +- app/ui/public/data/bedrock/R21_60.json | 335131 +++++++++++++++ .../src/components/screen/mode/modeOption.js | 2 +- cli/data/bedrock/1.21.60.0/block_states.json | 335131 +++++++++++++++ cli/data/bedrock/1.21.60.0/item_names.json | 7154 + .../encoding/bedrock/BedrockDataVersion.java | 1 + .../encoding/bedrock/BedrockEncoders.java | 5 + .../identifier/BedrockStateGroups.java | 45 +- .../identifier/BedrockStateTypes.java | 13 +- .../bedrock/v1_21_60/reader/ChunkReader.java | 12 + .../bedrock/v1_21_60/reader/ColumnReader.java | 20 + .../bedrock/v1_21_60/reader/LevelReader.java | 26 + .../bedrock/v1_21_60/reader/WorldReader.java | 23 + .../bedrock/v1_21_60/writer/ChunkWriter.java | 13 + .../bedrock/v1_21_60/writer/ColumnWriter.java | 25 + .../bedrock/v1_21_60/writer/LevelWriter.java | 20 + .../bedrock/v1_21_60/writer/WorldWriter.java | 20 + 17 files changed, 677630 insertions(+), 13 deletions(-) create mode 100644 app/ui/public/data/bedrock/R21_60.json create mode 100644 cli/data/bedrock/1.21.60.0/block_states.json create mode 100644 cli/data/bedrock/1.21.60.0/item_names.json create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ChunkReader.java create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ColumnReader.java create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/LevelReader.java create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/WorldReader.java create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ChunkWriter.java create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ColumnWriter.java create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/LevelWriter.java create mode 100644 cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/WorldWriter.java diff --git a/README.md b/README.md index 262c540..4d3a86d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Supported Formats: - 1.18.0 - 1.18.30 - 1.19.0 - 1.19.80 - 1.20.0 - 1.20.80 - - 1.21.0 - 1.21.50 + - 1.21.0 - 1.21.60 - Java - 1.8.8 - 1.9.0 - 1.9.3 diff --git a/app/ui/public/data/bedrock/R21_60.json b/app/ui/public/data/bedrock/R21_60.json new file mode 100644 index 0000000..8a7d9db --- /dev/null +++ b/app/ui/public/data/bedrock/R21_60.json @@ -0,0 +1,335131 @@ +{ + "blocks" : [ + { + "name" : "minecraft:cyan_terracotta", + "states" : [] + }, + { + "name" : "minecraft:hard_pink_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:polished_basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:polished_basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:nether_gold_ore", + "states" : [] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:wet_sponge", + "states" : [] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite", + "states" : [] + }, + { + "name" : "minecraft:blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powder_snow", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:deepslate_copper_ore", + "states" : [] + }, + { + "name" : "minecraft:chiseled_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:yellow_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lime_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:red_wool", + "states" : [] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_green_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:diorite", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_wool", + "states" : [] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:yellow_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:end_gateway", + "states" : [] + }, + { + "name" : "minecraft:azure_bluet", + "states" : [] + }, + { + "name" : "minecraft:beacon", + "states" : [] + }, + { + "name" : "minecraft:red_nether_brick", + "states" : [] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone", + "states" : [] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_carpet", + "states" : [] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mud_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hanging_roots", + "states" : [] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:calcite", + "states" : [] + }, + { + "name" : "minecraft:diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_orange_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:dead_bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_brown_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 0 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 1 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 0 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 1 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_wool", + "states" : [] + }, + { + "name" : "minecraft:orange_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:hard_black_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:gray_carpet", + "states" : [] + }, + { + "name" : "minecraft:lily_of_the_valley", + "states" : [] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:info_update", + "states" : [] + }, + { + "name" : "minecraft:seagrass", + "states" : [ + { + "name" : "sea_grass_type", + "type" : "string", + "value" : "default" + } + ] + }, + { + "name" : "minecraft:seagrass", + "states" : [ + { + "name" : "sea_grass_type", + "type" : "string", + "value" : "double_top" + } + ] + }, + { + "name" : "minecraft:seagrass", + "states" : [ + { + "name" : "sea_grass_type", + "type" : "string", + "value" : "double_bot" + } + ] + }, + { + "name" : "minecraft:tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:redstone_lamp", + "states" : [] + }, + { + "name" : "minecraft:mossy_cobblestone", + "states" : [] + }, + { + "name" : "minecraft:deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:magenta_carpet", + "states" : [] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_wool", + "states" : [] + }, + { + "name" : "minecraft:waxed_exposed_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:diamond_block", + "states" : [] + }, + { + "name" : "minecraft:dark_prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:brown_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:end_bricks", + "states" : [] + }, + { + "name" : "minecraft:magenta_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:packed_ice", + "states" : [] + }, + { + "name" : "minecraft:packed_mud", + "states" : [] + }, + { + "name" : "minecraft:light_blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:moss_carpet", + "states" : [] + }, + { + "name" : "minecraft:warped_fungus", + "states" : [] + }, + { + "name" : "minecraft:polished_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:amethyst_block", + "states" : [] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:gold_block", + "states" : [] + }, + { + "name" : "minecraft:flower_pot", + "states" : [ + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:flower_pot", + "states" : [ + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lime_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:weathered_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:muddy_mangrove_roots", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:muddy_mangrove_roots", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:muddy_mangrove_roots", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:noteblock", + "states" : [] + }, + { + "name" : "minecraft:tuff", + "states" : [] + }, + { + "name" : "minecraft:mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_tile_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:raw_gold_block", + "states" : [] + }, + { + "name" : "minecraft:allium", + "states" : [] + }, + { + "name" : "minecraft:white_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:copper_grate", + "states" : [] + }, + { + "name" : "minecraft:black_wool", + "states" : [] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence", + "states" : [] + }, + { + "name" : "minecraft:cut_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_fence", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_block", + "states" : [] + }, + { + "name" : "minecraft:black_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:open_eyeblossom", + "states" : [] + }, + { + "name" : "minecraft:mob_spawner", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_granite", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mangrove_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:obsidian", + "states" : [] + }, + { + "name" : "minecraft:light_gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:exposed_copper", + "states" : [] + }, + { + "name" : "minecraft:polished_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sponge", + "states" : [] + }, + { + "name" : "minecraft:exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_fence", + "states" : [] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:end_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:end_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hardened_clay", + "states" : [] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:light_block_9", + "states" : [] + }, + { + "name" : "minecraft:light_block_8", + "states" : [] + }, + { + "name" : "minecraft:light_block_7", + "states" : [] + }, + { + "name" : "minecraft:light_block_6", + "states" : [] + }, + { + "name" : "minecraft:light_block_5", + "states" : [] + }, + { + "name" : "minecraft:light_block_4", + "states" : [] + }, + { + "name" : "minecraft:light_block_3", + "states" : [] + }, + { + "name" : "minecraft:light_block_2", + "states" : [] + }, + { + "name" : "minecraft:light_block_1", + "states" : [] + }, + { + "name" : "minecraft:light_block_0", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_gray_terracotta", + "states" : [] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:brown_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:andesite", + "states" : [] + }, + { + "name" : "minecraft:fire_coral", + "states" : [] + }, + { + "name" : "minecraft:stone", + "states" : [] + }, + { + "name" : "minecraft:smooth_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:purpur_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:brain_coral", + "states" : [] + }, + { + "name" : "minecraft:stripped_spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:orange_wool", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:crimson_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:light_gray_concrete", + "states" : [] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper", + "states" : [] + }, + { + "name" : "minecraft:red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:red_sand", + "states" : [] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper", + "states" : [] + }, + { + "name" : "minecraft:infested_cracked_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 26 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 27 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 28 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 29 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 30 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 31 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 32 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 33 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 34 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 35 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 36 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 37 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 38 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 39 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 40 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 41 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 42 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 43 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 44 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 45 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 46 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 47 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 48 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 49 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 50 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 51 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 52 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 53 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 54 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 55 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 56 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 57 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 58 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 59 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 60 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 61 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 62 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 63 + } + ] + }, + { + "name" : "minecraft:brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:infested_mossy_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:honey_block", + "states" : [] + }, + { + "name" : "minecraft:underwater_tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:underwater_tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dripstone_block", + "states" : [] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:gold_ore", + "states" : [] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stonecutter", + "states" : [] + }, + { + "name" : "minecraft:warped_planks", + "states" : [] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:brown_carpet", + "states" : [] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_block", + "states" : [] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence", + "states" : [] + }, + { + "name" : "minecraft:mangrove_planks", + "states" : [] + }, + { + "name" : "minecraft:invisible_bedrock", + "states" : [] + }, + { + "name" : "minecraft:red_terracotta", + "states" : [] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_block", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_wool", + "states" : [] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mangrove_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:hard_brown_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:smooth_basalt", + "states" : [] + }, + { + "name" : "minecraft:waterlily", + "states" : [] + }, + { + "name" : "minecraft:stripped_pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_light_blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:emerald_block", + "states" : [] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:purple_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:spruce_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:spruce_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:ochre_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:ochre_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:ochre_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "down" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "up" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "down" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "up" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pink_concrete", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glowingobsidian", + "states" : [] + }, + { + "name" : "minecraft:brown_mushroom", + "states" : [] + }, + { + "name" : "minecraft:cyan_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:resin_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:oxidized_copper", + "states" : [] + }, + { + "name" : "minecraft:copper_ore", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_planks", + "states" : [] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 0 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 1 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 2 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 3 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 4 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 5 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 6 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 7 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 0 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 1 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 2 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 3 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 4 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 5 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 6 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 7 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:green_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cracked_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:sculk_catalyst", + "states" : [ + { + "name" : "bloom", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_catalyst", + "states" : [ + { + "name" : "bloom", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone", + "states" : [] + }, + { + "name" : "minecraft:horn_coral", + "states" : [] + }, + { + "name" : "minecraft:yellow_concrete", + "states" : [] + }, + { + "name" : "minecraft:cyan_carpet", + "states" : [] + }, + { + "name" : "minecraft:oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:blue_terracotta", + "states" : [] + }, + { + "name" : "minecraft:sandstone", + "states" : [] + }, + { + "name" : "minecraft:brown_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:undyed_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone", + "states" : [] + }, + { + "name" : "minecraft:mycelium", + "states" : [] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:pale_oak_planks", + "states" : [] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:green_terracotta", + "states" : [] + }, + { + "name" : "minecraft:deepslate_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smithing_table", + "states" : [] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:weathered_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:poppy", + "states" : [] + }, + { + "name" : "minecraft:tuff_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:mossy_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:green_wool", + "states" : [] + }, + { + "name" : "minecraft:green_carpet", + "states" : [] + }, + { + "name" : "minecraft:prismarine_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_plant", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_plant", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:netherite_block", + "states" : [] + }, + { + "name" : "minecraft:pink_wool", + "states" : [] + }, + { + "name" : "minecraft:redstone_block", + "states" : [] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:quartz_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:quartz_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:quartz_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:birch_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_block", + "states" : [] + }, + { + "name" : "minecraft:end_stone", + "states" : [] + }, + { + "name" : "minecraft:polished_tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:jungle_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:jungle_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:glowstone", + "states" : [] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_white_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:mud_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mud_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_magenta_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:blue_orchid", + "states" : [] + }, + { + "name" : "minecraft:green_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_terracotta", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:infested_cobblestone", + "states" : [] + }, + { + "name" : "minecraft:pink_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cracked_deepslate_tiles", + "states" : [] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_nylium", + "states" : [] + }, + { + "name" : "minecraft:structure_void", + "states" : [] + }, + { + "name" : "minecraft:purple_concrete", + "states" : [] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:normal_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:normal_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hard_yellow_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:spruce_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_terracotta", + "states" : [] + }, + { + "name" : "minecraft:snow", + "states" : [] + }, + { + "name" : "minecraft:sand", + "states" : [] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:conduit", + "states" : [] + }, + { + "name" : "minecraft:slime", + "states" : [] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:lapis_block", + "states" : [] + }, + { + "name" : "minecraft:coal_ore", + "states" : [] + }, + { + "name" : "minecraft:mossy_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:client_request_placeholder_block", + "states" : [] + }, + { + "name" : "minecraft:redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:bamboo_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:green_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:bubble_coral_block", + "states" : [] + }, + { + "name" : "minecraft:infested_chiseled_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:nether_brick_fence", + "states" : [] + }, + { + "name" : "minecraft:pink_tulip", + "states" : [] + }, + { + "name" : "minecraft:oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:deepslate_tile_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_tile_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pink_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:pale_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dead_tube_coral", + "states" : [] + }, + { + "name" : "minecraft:nether_wart_block", + "states" : [] + }, + { + "name" : "minecraft:prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_cyan_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:normal_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:normal_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_blue_terracotta", + "states" : [] + }, + { + "name" : "minecraft:lit_redstone_lamp", + "states" : [] + }, + { + "name" : "minecraft:hard_blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:hard_purple_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:diamond_ore", + "states" : [] + }, + { + "name" : "minecraft:warped_roots", + "states" : [] + }, + { + "name" : "minecraft:magenta_concrete", + "states" : [] + }, + { + "name" : "minecraft:dark_prismarine", + "states" : [] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:warped_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:warped_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sculk_sensor", + "states" : [ + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_sensor", + "states" : [ + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_sensor", + "states" : [ + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frog_spawn", + "states" : [] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:red_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:stripped_cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_planks", + "states" : [] + }, + { + "name" : "minecraft:fire_coral_block", + "states" : [] + }, + { + "name" : "minecraft:magenta_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:honeycomb_block", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_ore", + "states" : [] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_quartz", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:smooth_quartz", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:smooth_quartz", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:coarse_dirt", + "states" : [] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:orange_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:white_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:stripped_birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cracked_nether_bricks", + "states" : [] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_lime_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_tiles", + "states" : [] + }, + { + "name" : "minecraft:smooth_stone", + "states" : [] + }, + { + "name" : "minecraft:hard_light_gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:gray_terracotta", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:white_tulip", + "states" : [] + }, + { + "name" : "minecraft:lime_concrete", + "states" : [] + }, + { + "name" : "minecraft:black_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_mushroom", + "states" : [] + }, + { + "name" : "minecraft:gilded_blackstone", + "states" : [] + }, + { + "name" : "minecraft:hard_yellow_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:magenta_terracotta", + "states" : [] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:reserved6", + "states" : [] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unknown", + "states" : [] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:yellow_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sunflower", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sunflower", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:infested_deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:infested_deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:infested_deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:podzol", + "states" : [] + }, + { + "name" : "minecraft:copper_block", + "states" : [] + }, + { + "name" : "minecraft:lit_redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deadbush", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_bricks", + "states" : [] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_copper", + "states" : [] + }, + { + "name" : "minecraft:iron_ore", + "states" : [] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:brick_block", + "states" : [] + }, + { + "name" : "minecraft:hard_glass", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:magenta_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:iron_bars", + "states" : [] + }, + { + "name" : "minecraft:white_terracotta", + "states" : [] + }, + { + "name" : "minecraft:stripped_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:light_blue_carpet", + "states" : [] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:crimson_planks", + "states" : [] + }, + { + "name" : "minecraft:stripped_dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:white_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:purple_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jukebox", + "states" : [] + }, + { + "name" : "minecraft:stripped_cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:shroomlight", + "states" : [] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cornflower", + "states" : [] + }, + { + "name" : "minecraft:chiseled_polished_blackstone", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glass_pane", + "states" : [] + }, + { + "name" : "minecraft:chiseled_deepslate", + "states" : [] + }, + { + "name" : "minecraft:cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:red_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:infested_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:raw_copper_block", + "states" : [] + }, + { + "name" : "minecraft:oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:horn_coral_block", + "states" : [] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:light_gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_planks", + "states" : [] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cyan_wool", + "states" : [] + }, + { + "name" : "minecraft:petrified_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:petrified_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cracked_deepslate_bricks", + "states" : [] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:waxed_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:hard_light_blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dirt_with_roots", + "states" : [] + }, + { + "name" : "minecraft:coal_block", + "states" : [] + }, + { + "name" : "minecraft:white_wool", + "states" : [] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:waxed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_bricks", + "states" : [] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:rose_bush", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:rose_bush", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowering_azalea", + "states" : [] + }, + { + "name" : "minecraft:oxidized_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:blue_wool", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:chorus_plant", + "states" : [] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:element_100", + "states" : [] + }, + { + "name" : "minecraft:element_101", + "states" : [] + }, + { + "name" : "minecraft:element_102", + "states" : [] + }, + { + "name" : "minecraft:element_103", + "states" : [] + }, + { + "name" : "minecraft:element_104", + "states" : [] + }, + { + "name" : "minecraft:element_105", + "states" : [] + }, + { + "name" : "minecraft:element_106", + "states" : [] + }, + { + "name" : "minecraft:element_107", + "states" : [] + }, + { + "name" : "minecraft:element_108", + "states" : [] + }, + { + "name" : "minecraft:element_109", + "states" : [] + }, + { + "name" : "minecraft:element_113", + "states" : [] + }, + { + "name" : "minecraft:element_112", + "states" : [] + }, + { + "name" : "minecraft:element_111", + "states" : [] + }, + { + "name" : "minecraft:element_110", + "states" : [] + }, + { + "name" : "minecraft:element_117", + "states" : [] + }, + { + "name" : "minecraft:element_116", + "states" : [] + }, + { + "name" : "minecraft:element_115", + "states" : [] + }, + { + "name" : "minecraft:element_114", + "states" : [] + }, + { + "name" : "minecraft:element_118", + "states" : [] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:moving_block", + "states" : [] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brain_coral_block", + "states" : [] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:bamboo_planks", + "states" : [] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 26 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 27 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 28 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 29 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 30 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 31 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 32 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 33 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 34 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 35 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 36 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 37 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 38 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 39 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 40 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 41 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 42 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 43 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 44 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 45 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 46 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 47 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 48 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 49 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 50 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 51 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 52 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 53 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 54 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 55 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 56 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 57 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 58 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 59 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 60 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 61 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 62 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 63 + } + ] + }, + { + "name" : "minecraft:purpur_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:purpur_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:purpur_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:acacia_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:acacia_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_fence", + "states" : [] + }, + { + "name" : "minecraft:pale_moss_block", + "states" : [] + }, + { + "name" : "minecraft:soul_lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:soul_lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dirt", + "states" : [] + }, + { + "name" : "minecraft:blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:deny", + "states" : [] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bubble_column", + "states" : [ + { + "name" : "drag_down", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bubble_column", + "states" : [ + { + "name" : "drag_down", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:smooth_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:soul_soil", + "states" : [] + }, + { + "name" : "minecraft:soul_sand", + "states" : [] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_diorite", + "states" : [] + }, + { + "name" : "minecraft:reinforced_deepslate", + "states" : [] + }, + { + "name" : "minecraft:fletching_table", + "states" : [] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_fence", + "states" : [] + }, + { + "name" : "minecraft:crafting_table", + "states" : [] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 0 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 1 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 2 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 3 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 0 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 1 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 2 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 3 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:brown_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:green_concrete", + "states" : [] + }, + { + "name" : "minecraft:tuff_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:crimson_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:warped_wart_block", + "states" : [] + }, + { + "name" : "minecraft:light_gray_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:resin_bricks", + "states" : [] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:yellow_carpet", + "states" : [] + }, + { + "name" : "minecraft:cyan_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:black_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral", + "states" : [] + }, + { + "name" : "minecraft:andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:grass_block", + "states" : [] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_black_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:stripped_birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:tinted_glass", + "states" : [] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:cut_sandstone", + "states" : [] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_wool", + "states" : [] + }, + { + "name" : "minecraft:blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:black_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:jungle_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_sandstone", + "states" : [] + }, + { + "name" : "minecraft:barrier", + "states" : [] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:black_carpet", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cherry_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cherry_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:fern", + "states" : [] + }, + { + "name" : "minecraft:purpur_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:purpur_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:torchflower", + "states" : [] + }, + { + "name" : "minecraft:infested_stone", + "states" : [] + }, + { + "name" : "minecraft:pale_hanging_moss", + "states" : [ + { + "name" : "tip", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_hanging_moss", + "states" : [ + { + "name" : "tip", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:prismarine", + "states" : [] + }, + { + "name" : "minecraft:magenta_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:black_terracotta", + "states" : [] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_gold_ore", + "states" : [] + }, + { + "name" : "minecraft:ancient_debris", + "states" : [] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:hard_orange_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glass", + "states" : [] + }, + { + "name" : "minecraft:wither_rose", + "states" : [] + }, + { + "name" : "minecraft:nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_roots", + "states" : [] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_concrete", + "states" : [] + }, + { + "name" : "minecraft:cherry_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cherry_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:chiseled_resin_bricks", + "states" : [] + }, + { + "name" : "minecraft:bubble_coral", + "states" : [] + }, + { + "name" : "minecraft:orange_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral", + "states" : [] + }, + { + "name" : "minecraft:stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stripped_spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_magenta_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_nylium", + "states" : [] + }, + { + "name" : "minecraft:deepslate_emerald_ore", + "states" : [] + }, + { + "name" : "minecraft:acacia_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_bricks", + "states" : [] + }, + { + "name" : "minecraft:andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "data" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "save" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "load" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "corner" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "invalid" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "export" + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purple_terracotta", + "states" : [] + }, + { + "name" : "minecraft:target", + "states" : [] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:end_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hard_lime_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pearlescent_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:pearlescent_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:pearlescent_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:tall_grass", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tall_grass", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_block_12", + "states" : [] + }, + { + "name" : "minecraft:light_block_13", + "states" : [] + }, + { + "name" : "minecraft:light_block_10", + "states" : [] + }, + { + "name" : "minecraft:light_block_11", + "states" : [] + }, + { + "name" : "minecraft:light_block_14", + "states" : [] + }, + { + "name" : "minecraft:light_block_15", + "states" : [] + }, + { + "name" : "minecraft:nether_sprouts", + "states" : [] + }, + { + "name" : "minecraft:cyan_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:dead_horn_coral_block", + "states" : [] + }, + { + "name" : "minecraft:verdant_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:verdant_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:verdant_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:resin_block", + "states" : [] + }, + { + "name" : "minecraft:warped_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:warped_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:large_fern", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:large_fern", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hard_green_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:moss_block", + "states" : [] + }, + { + "name" : "minecraft:purple_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:short_grass", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:red_nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:exposed_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_planks", + "states" : [] + }, + { + "name" : "minecraft:deepslate_redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:dead_brain_coral_block", + "states" : [] + }, + { + "name" : "minecraft:mangrove_fence", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_bricks", + "states" : [] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate", + "states" : [] + }, + { + "name" : "minecraft:quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bookshelf", + "states" : [] + }, + { + "name" : "minecraft:mud", + "states" : [] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:ice", + "states" : [] + }, + { + "name" : "minecraft:air", + "states" : [] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_concrete", + "states" : [] + }, + { + "name" : "minecraft:tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:web", + "states" : [] + }, + { + "name" : "minecraft:dead_tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:orange_concrete", + "states" : [] + }, + { + "name" : "minecraft:crying_obsidian", + "states" : [] + }, + { + "name" : "minecraft:lime_carpet", + "states" : [] + }, + { + "name" : "minecraft:closed_eyeblossom", + "states" : [] + }, + { + "name" : "minecraft:dead_fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:enchanting_table", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:orange_tulip", + "states" : [] + }, + { + "name" : "minecraft:brown_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:azalea", + "states" : [] + }, + { + "name" : "minecraft:mud_bricks", + "states" : [] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_red_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:light_blue_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:budding_amethyst", + "states" : [] + }, + { + "name" : "minecraft:sniffer_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + } + ] + }, + { + "name" : "minecraft:sniffer_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + } + ] + }, + { + "name" : "minecraft:sniffer_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + } + ] + }, + { + "name" : "minecraft:polished_diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:green_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:bedrock", + "states" : [ + { + "name" : "infiniburn_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bedrock", + "states" : [ + { + "name" : "infiniburn_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:spruce_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_ice", + "states" : [] + }, + { + "name" : "minecraft:cyan_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:hard_red_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sculk", + "states" : [] + }, + { + "name" : "minecraft:hard_purple_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:netherrack", + "states" : [] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:orange_carpet", + "states" : [] + }, + { + "name" : "minecraft:dead_horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:light_blue_wool", + "states" : [] + }, + { + "name" : "minecraft:allow", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_fence", + "states" : [] + }, + { + "name" : "minecraft:deprecated_purpur_block_2", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_2", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_2", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_1", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_1", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_1", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:chain", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:chain", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:chain", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:clay", + "states" : [] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 26 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 27 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 28 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 29 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 30 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 31 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 32 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 33 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 34 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 35 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 36 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 37 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 38 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 39 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 40 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 41 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 42 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 43 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 44 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 45 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 46 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 47 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 48 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 49 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 50 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 51 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 52 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 53 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 54 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 55 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 56 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 57 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 58 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 59 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 60 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 61 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 62 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 63 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral", + "states" : [] + }, + { + "name" : "minecraft:deepslate_coal_ore", + "states" : [] + }, + { + "name" : "minecraft:weathered_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cracked_polished_blackstone_bricks", + "states" : [] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_tuff", + "states" : [] + }, + { + "name" : "minecraft:magenta_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:hard_white_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:hard_cyan_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:chiseled_nether_bricks", + "states" : [] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:light_gray_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:deepslate_lapis_ore", + "states" : [] + }, + { + "name" : "minecraft:dead_bubble_coral", + "states" : [] + }, + { + "name" : "minecraft:cherry_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:white_carpet", + "states" : [] + }, + { + "name" : "minecraft:cyan_concrete", + "states" : [] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dragon_egg", + "states" : [] + }, + { + "name" : "minecraft:blue_concrete", + "states" : [] + }, + { + "name" : "minecraft:nether_brick", + "states" : [] + }, + { + "name" : "minecraft:deepslate_iron_ore", + "states" : [] + }, + { + "name" : "minecraft:element_1", + "states" : [] + }, + { + "name" : "minecraft:element_0", + "states" : [] + }, + { + "name" : "minecraft:element_3", + "states" : [] + }, + { + "name" : "minecraft:element_2", + "states" : [] + }, + { + "name" : "minecraft:element_5", + "states" : [] + }, + { + "name" : "minecraft:element_4", + "states" : [] + }, + { + "name" : "minecraft:element_7", + "states" : [] + }, + { + "name" : "minecraft:element_6", + "states" : [] + }, + { + "name" : "minecraft:element_9", + "states" : [] + }, + { + "name" : "minecraft:element_8", + "states" : [] + }, + { + "name" : "minecraft:oxeye_daisy", + "states" : [] + }, + { + "name" : "minecraft:camera", + "states" : [] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:resin_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:resin_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:heavy_core", + "states" : [] + }, + { + "name" : "minecraft:cobbled_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lilac", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lilac", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:chiseled_quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:chiseled_quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:spore_blossom", + "states" : [] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:emerald_ore", + "states" : [] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:gray_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:petrified_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:petrified_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:gray_concrete", + "states" : [] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stripped_warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "tip" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "frustum" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "middle" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "base" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "merge" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "tip" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "frustum" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "middle" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "base" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "merge" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_carpet", + "states" : [] + }, + { + "name" : "minecraft:netherreactor", + "states" : [] + }, + { + "name" : "minecraft:cut_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:chiseled_tuff_bricks", + "states" : [] + }, + { + "name" : "minecraft:light_blue_concrete", + "states" : [] + }, + { + "name" : "minecraft:red_tulip", + "states" : [] + }, + { + "name" : "minecraft:chemical_heat", + "states" : [] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:tube_coral_block", + "states" : [] + }, + { + "name" : "minecraft:chiseled_red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_pink_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:orange_terracotta", + "states" : [] + }, + { + "name" : "minecraft:brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper", + "states" : [] + }, + { + "name" : "minecraft:oak_planks", + "states" : [] + }, + { + "name" : "minecraft:stripped_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:smooth_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_andesite", + "states" : [] + }, + { + "name" : "minecraft:sea_lantern", + "states" : [] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:crimson_roots", + "states" : [] + }, + { + "name" : "minecraft:acacia_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:acacia_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:yellow_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:white_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:end_portal", + "states" : [] + }, + { + "name" : "minecraft:yellow_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:jungle_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:jungle_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:blackstone", + "states" : [] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lit_deepslate_redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:element_10", + "states" : [] + }, + { + "name" : "minecraft:element_11", + "states" : [] + }, + { + "name" : "minecraft:element_12", + "states" : [] + }, + { + "name" : "minecraft:element_13", + "states" : [] + }, + { + "name" : "minecraft:element_14", + "states" : [] + }, + { + "name" : "minecraft:element_15", + "states" : [] + }, + { + "name" : "minecraft:element_16", + "states" : [] + }, + { + "name" : "minecraft:element_17", + "states" : [] + }, + { + "name" : "minecraft:element_18", + "states" : [] + }, + { + "name" : "minecraft:element_19", + "states" : [] + }, + { + "name" : "minecraft:element_36", + "states" : [] + }, + { + "name" : "minecraft:element_37", + "states" : [] + }, + { + "name" : "minecraft:element_34", + "states" : [] + }, + { + "name" : "minecraft:element_35", + "states" : [] + }, + { + "name" : "minecraft:element_32", + "states" : [] + }, + { + "name" : "minecraft:element_33", + "states" : [] + }, + { + "name" : "minecraft:element_30", + "states" : [] + }, + { + "name" : "minecraft:element_31", + "states" : [] + }, + { + "name" : "minecraft:element_38", + "states" : [] + }, + { + "name" : "minecraft:element_39", + "states" : [] + }, + { + "name" : "minecraft:element_29", + "states" : [] + }, + { + "name" : "minecraft:element_28", + "states" : [] + }, + { + "name" : "minecraft:element_21", + "states" : [] + }, + { + "name" : "minecraft:element_20", + "states" : [] + }, + { + "name" : "minecraft:element_23", + "states" : [] + }, + { + "name" : "minecraft:element_22", + "states" : [] + }, + { + "name" : "minecraft:element_25", + "states" : [] + }, + { + "name" : "minecraft:element_24", + "states" : [] + }, + { + "name" : "minecraft:element_27", + "states" : [] + }, + { + "name" : "minecraft:element_26", + "states" : [] + }, + { + "name" : "minecraft:element_58", + "states" : [] + }, + { + "name" : "minecraft:element_59", + "states" : [] + }, + { + "name" : "minecraft:element_54", + "states" : [] + }, + { + "name" : "minecraft:element_55", + "states" : [] + }, + { + "name" : "minecraft:element_56", + "states" : [] + }, + { + "name" : "minecraft:element_57", + "states" : [] + }, + { + "name" : "minecraft:element_50", + "states" : [] + }, + { + "name" : "minecraft:element_51", + "states" : [] + }, + { + "name" : "minecraft:element_52", + "states" : [] + }, + { + "name" : "minecraft:element_53", + "states" : [] + }, + { + "name" : "minecraft:element_49", + "states" : [] + }, + { + "name" : "minecraft:element_48", + "states" : [] + }, + { + "name" : "minecraft:element_47", + "states" : [] + }, + { + "name" : "minecraft:element_46", + "states" : [] + }, + { + "name" : "minecraft:element_45", + "states" : [] + }, + { + "name" : "minecraft:element_44", + "states" : [] + }, + { + "name" : "minecraft:element_43", + "states" : [] + }, + { + "name" : "minecraft:element_42", + "states" : [] + }, + { + "name" : "minecraft:element_41", + "states" : [] + }, + { + "name" : "minecraft:element_40", + "states" : [] + }, + { + "name" : "minecraft:element_72", + "states" : [] + }, + { + "name" : "minecraft:element_73", + "states" : [] + }, + { + "name" : "minecraft:element_70", + "states" : [] + }, + { + "name" : "minecraft:element_71", + "states" : [] + }, + { + "name" : "minecraft:element_76", + "states" : [] + }, + { + "name" : "minecraft:element_77", + "states" : [] + }, + { + "name" : "minecraft:element_74", + "states" : [] + }, + { + "name" : "minecraft:element_75", + "states" : [] + }, + { + "name" : "minecraft:element_78", + "states" : [] + }, + { + "name" : "minecraft:element_79", + "states" : [] + }, + { + "name" : "minecraft:element_65", + "states" : [] + }, + { + "name" : "minecraft:element_64", + "states" : [] + }, + { + "name" : "minecraft:element_67", + "states" : [] + }, + { + "name" : "minecraft:element_66", + "states" : [] + }, + { + "name" : "minecraft:element_61", + "states" : [] + }, + { + "name" : "minecraft:element_60", + "states" : [] + }, + { + "name" : "minecraft:element_63", + "states" : [] + }, + { + "name" : "minecraft:element_62", + "states" : [] + }, + { + "name" : "minecraft:element_69", + "states" : [] + }, + { + "name" : "minecraft:element_68", + "states" : [] + }, + { + "name" : "minecraft:element_98", + "states" : [] + }, + { + "name" : "minecraft:element_99", + "states" : [] + }, + { + "name" : "minecraft:element_90", + "states" : [] + }, + { + "name" : "minecraft:element_91", + "states" : [] + }, + { + "name" : "minecraft:element_92", + "states" : [] + }, + { + "name" : "minecraft:element_93", + "states" : [] + }, + { + "name" : "minecraft:element_94", + "states" : [] + }, + { + "name" : "minecraft:element_95", + "states" : [] + }, + { + "name" : "minecraft:element_96", + "states" : [] + }, + { + "name" : "minecraft:element_97", + "states" : [] + }, + { + "name" : "minecraft:element_89", + "states" : [] + }, + { + "name" : "minecraft:element_88", + "states" : [] + }, + { + "name" : "minecraft:element_83", + "states" : [] + }, + { + "name" : "minecraft:element_82", + "states" : [] + }, + { + "name" : "minecraft:element_81", + "states" : [] + }, + { + "name" : "minecraft:element_80", + "states" : [] + }, + { + "name" : "minecraft:element_87", + "states" : [] + }, + { + "name" : "minecraft:element_86", + "states" : [] + }, + { + "name" : "minecraft:element_85", + "states" : [] + }, + { + "name" : "minecraft:element_84", + "states" : [] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:lapis_ore", + "states" : [] + }, + { + "name" : "minecraft:red_concrete", + "states" : [] + }, + { + "name" : "minecraft:pink_carpet", + "states" : [] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:purpur_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:purpur_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper", + "states" : [] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purple_carpet", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_fungus", + "states" : [] + }, + { + "name" : "minecraft:cherry_planks", + "states" : [] + }, + { + "name" : "minecraft:polished_deepslate", + "states" : [] + }, + { + "name" : "minecraft:tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:tube_coral", + "states" : [] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:portal", + "states" : [ + { + "name" : "portal_axis", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:portal", + "states" : [ + { + "name" : "portal_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:portal", + "states" : [ + { + "name" : "portal_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:peony", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:peony", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_planks", + "states" : [] + }, + { + "name" : "minecraft:mossy_cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:info_update2", + "states" : [] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:waxed_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:waxed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dried_kelp_block", + "states" : [] + }, + { + "name" : "minecraft:hard_light_gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:crimson_fence", + "states" : [] + }, + { + "name" : "minecraft:chiseled_tuff", + "states" : [] + }, + { + "name" : "minecraft:lime_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "one_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "two_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "three_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "four_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "one_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "two_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "three_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "four_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "one_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "two_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "three_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "four_egg" + } + ] + }, + { + "name" : "minecraft:magma", + "states" : [] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_terracotta", + "states" : [] + }, + { + "name" : "minecraft:cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_diamond_ore", + "states" : [] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_gray_wool", + "states" : [] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:prismarine_bricks", + "states" : [] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence", + "states" : [] + }, + { + "name" : "minecraft:lime_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:birch_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:birch_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:white_concrete", + "states" : [] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_fence", + "states" : [] + }, + { + "name" : "minecraft:grass_path", + "states" : [] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:orange_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper", + "states" : [] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pale_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:pale_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lime_terracotta", + "states" : [] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lodestone", + "states" : [] + }, + { + "name" : "minecraft:bamboo_mosaic", + "states" : [] + }, + { + "name" : "minecraft:hard_blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:raw_iron_block", + "states" : [] + }, + { + "name" : "minecraft:light_gray_carpet", + "states" : [] + }, + { + "name" : "minecraft:purple_wool", + "states" : [] + }, + { + "name" : "minecraft:iron_block", + "states" : [] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:gravel", + "states" : [] + }, + { + "name" : "minecraft:cartography_table", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dandelion", + "states" : [] + } + ] +} diff --git a/app/ui/src/components/screen/mode/modeOption.js b/app/ui/src/components/screen/mode/modeOption.js index 5736608..cfb8b7c 100644 --- a/app/ui/src/components/screen/mode/modeOption.js +++ b/app/ui/src/components/screen/mode/modeOption.js @@ -24,7 +24,7 @@ export class ModeOption extends Component { let version = this.props.value.version ? this.props.value.version : getVersionName(this.props.type); let java = this.props.type.startsWith("JAVA_"); let bedrock = this.props.type.startsWith("BEDROCK_"); - let beta = (bedrock && version === "1.21.50") || (java && version === "1.21.4"); // Beta label + let beta = (bedrock && version === "1.21.60") || (java && version === "1.21.4"); // Beta label let label; if (java) { label = "Java Edition"; diff --git a/cli/data/bedrock/1.21.60.0/block_states.json b/cli/data/bedrock/1.21.60.0/block_states.json new file mode 100644 index 0000000..8a7d9db --- /dev/null +++ b/cli/data/bedrock/1.21.60.0/block_states.json @@ -0,0 +1,335131 @@ +{ + "blocks" : [ + { + "name" : "minecraft:cyan_terracotta", + "states" : [] + }, + { + "name" : "minecraft:hard_pink_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:birch_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:polished_basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:polished_basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:nether_gold_ore", + "states" : [] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:zombie_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:wet_sponge", + "states" : [] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite", + "states" : [] + }, + { + "name" : "minecraft:blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powder_snow", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dark_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:deepslate_copper_ore", + "states" : [] + }, + { + "name" : "minecraft:chiseled_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:yellow_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lime_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:red_wool", + "states" : [] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_green_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:diorite", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cherry_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_wool", + "states" : [] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:yellow_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:end_gateway", + "states" : [] + }, + { + "name" : "minecraft:azure_bluet", + "states" : [] + }, + { + "name" : "minecraft:beacon", + "states" : [] + }, + { + "name" : "minecraft:red_nether_brick", + "states" : [] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone", + "states" : [] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "height", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:snow_layer", + "states" : [ + { + "name" : "covered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "height", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_carpet", + "states" : [] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mud_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hanging_roots", + "states" : [] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_bricks_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:calcite", + "states" : [] + }, + { + "name" : "minecraft:diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_orange_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:dead_bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bubble_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_brown_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 0 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 1 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 0 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_shrieker", + "states" : [ + { + "name" : "active", + "type" : "byte", + "value" : 1 + }, + { + "name" : "can_summon", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_wool", + "states" : [] + }, + { + "name" : "minecraft:orange_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:hard_black_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:gray_carpet", + "states" : [] + }, + { + "name" : "minecraft:lily_of_the_valley", + "states" : [] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:lime_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:info_update", + "states" : [] + }, + { + "name" : "minecraft:seagrass", + "states" : [ + { + "name" : "sea_grass_type", + "type" : "string", + "value" : "default" + } + ] + }, + { + "name" : "minecraft:seagrass", + "states" : [ + { + "name" : "sea_grass_type", + "type" : "string", + "value" : "double_top" + } + ] + }, + { + "name" : "minecraft:seagrass", + "states" : [ + { + "name" : "sea_grass_type", + "type" : "string", + "value" : "double_bot" + } + ] + }, + { + "name" : "minecraft:tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:redstone_lamp", + "states" : [] + }, + { + "name" : "minecraft:mossy_cobblestone", + "states" : [] + }, + { + "name" : "minecraft:deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:magenta_carpet", + "states" : [] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_wool", + "states" : [] + }, + { + "name" : "minecraft:waxed_exposed_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:warped_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:diamond_block", + "states" : [] + }, + { + "name" : "minecraft:dark_prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:brown_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:end_bricks", + "states" : [] + }, + { + "name" : "minecraft:magenta_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:packed_ice", + "states" : [] + }, + { + "name" : "minecraft:packed_mud", + "states" : [] + }, + { + "name" : "minecraft:light_blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:moss_carpet", + "states" : [] + }, + { + "name" : "minecraft:warped_fungus", + "states" : [] + }, + { + "name" : "minecraft:polished_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:amethyst_block", + "states" : [] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:gold_block", + "states" : [] + }, + { + "name" : "minecraft:flower_pot", + "states" : [ + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:flower_pot", + "states" : [ + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 3 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 4 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 5 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 6 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 7 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 8 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 9 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 10 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 11 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 12 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 13 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 14 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 15 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 16 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 17 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 18 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 19 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 20 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 21 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 22 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 23 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 24 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 25 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 26 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 27 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 28 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 29 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 30 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 31 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 32 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 33 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 34 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 35 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 36 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 37 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 38 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 39 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 40 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 41 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 42 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 43 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 44 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 45 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 46 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 47 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 48 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 49 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 50 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 51 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 52 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 53 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 54 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 55 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 56 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 57 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 58 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 59 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 60 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 61 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 62 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chiseled_bookshelf", + "states" : [ + { + "name" : "books_stored", + "type" : "int", + "value" : 63 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lime_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:weathered_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:small_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:activator_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:potatoes", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:muddy_mangrove_roots", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:muddy_mangrove_roots", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:muddy_mangrove_roots", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:pale_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:noteblock", + "states" : [] + }, + { + "name" : "minecraft:tuff", + "states" : [] + }, + { + "name" : "minecraft:mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_fence", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_tile_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:raw_gold_block", + "states" : [] + }, + { + "name" : "minecraft:allium", + "states" : [] + }, + { + "name" : "minecraft:white_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:copper_grate", + "states" : [] + }, + { + "name" : "minecraft:black_wool", + "states" : [] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence", + "states" : [] + }, + { + "name" : "minecraft:cut_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_fence", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_block", + "states" : [] + }, + { + "name" : "minecraft:black_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:open_eyeblossom", + "states" : [] + }, + { + "name" : "minecraft:mob_spawner", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_granite", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:soul_fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mangrove_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:obsidian", + "states" : [] + }, + { + "name" : "minecraft:light_gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:exposed_copper", + "states" : [] + }, + { + "name" : "minecraft:polished_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:stone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sponge", + "states" : [] + }, + { + "name" : "minecraft:exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_fence", + "states" : [] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:normal_stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:end_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:end_stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hardened_clay", + "states" : [] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_jungle_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:light_block_9", + "states" : [] + }, + { + "name" : "minecraft:light_block_8", + "states" : [] + }, + { + "name" : "minecraft:light_block_7", + "states" : [] + }, + { + "name" : "minecraft:light_block_6", + "states" : [] + }, + { + "name" : "minecraft:light_block_5", + "states" : [] + }, + { + "name" : "minecraft:light_block_4", + "states" : [] + }, + { + "name" : "minecraft:light_block_3", + "states" : [] + }, + { + "name" : "minecraft:light_block_2", + "states" : [] + }, + { + "name" : "minecraft:light_block_1", + "states" : [] + }, + { + "name" : "minecraft:light_block_0", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_gray_terracotta", + "states" : [] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:brown_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:andesite", + "states" : [] + }, + { + "name" : "minecraft:fire_coral", + "states" : [] + }, + { + "name" : "minecraft:stone", + "states" : [] + }, + { + "name" : "minecraft:smooth_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:purpur_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:brain_coral", + "states" : [] + }, + { + "name" : "minecraft:stripped_spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:orange_wool", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:crimson_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:respawn_anchor", + "states" : [ + { + "name" : "respawn_anchor_charge", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:light_gray_concrete", + "states" : [] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper", + "states" : [] + }, + { + "name" : "minecraft:red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:red_sand", + "states" : [] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hay_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:jungle_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper", + "states" : [] + }, + { + "name" : "minecraft:infested_cracked_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 26 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 27 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 28 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 29 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 30 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 31 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 32 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 33 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 34 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 35 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 36 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 37 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 38 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 39 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 40 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 41 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 42 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 43 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 44 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 45 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 46 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 47 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 48 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 49 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 50 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 51 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 52 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 53 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 54 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 55 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 56 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 57 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 58 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 59 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 60 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 61 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 62 + } + ] + }, + { + "name" : "minecraft:resin_clump", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 63 + } + ] + }, + { + "name" : "minecraft:brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brain_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:infested_mossy_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:honey_block", + "states" : [] + }, + { + "name" : "minecraft:underwater_tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:underwater_tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dripstone_block", + "states" : [] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:vine", + "states" : [ + { + "name" : "vine_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:gold_ore", + "states" : [] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:yellow_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stonecutter", + "states" : [] + }, + { + "name" : "minecraft:warped_planks", + "states" : [] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:brown_carpet", + "states" : [] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dead_bubble_coral_block", + "states" : [] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence", + "states" : [] + }, + { + "name" : "minecraft:mangrove_planks", + "states" : [] + }, + { + "name" : "minecraft:invisible_bedrock", + "states" : [] + }, + { + "name" : "minecraft:red_terracotta", + "states" : [] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_block", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_wool", + "states" : [] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:magenta_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:quartz_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mangrove_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:orange_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:hard_brown_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:smooth_basalt", + "states" : [] + }, + { + "name" : "minecraft:waterlily", + "states" : [] + }, + { + "name" : "minecraft:stripped_pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_light_blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:emerald_block", + "states" : [] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_sand", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:heavy_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:purple_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:lightning_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobblestone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:underwater_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:spruce_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:spruce_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:dark_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:ochre_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:ochre_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:ochre_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "down" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "up" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "down" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "up" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:observer", + "states" : [ + { + "name" : "minecraft:facing_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:silver_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pink_concrete", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glowingobsidian", + "states" : [] + }, + { + "name" : "minecraft:brown_mushroom", + "states" : [] + }, + { + "name" : "minecraft:cyan_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:brown_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:resin_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:oxidized_copper", + "states" : [] + }, + { + "name" : "minecraft:copper_ore", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_planks", + "states" : [] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:birch_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 0 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 1 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 2 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 3 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 4 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 5 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 6 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 7 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 0 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 1 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 2 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 3 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 4 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 5 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 6 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:scaffolding", + "states" : [ + { + "name" : "stability", + "type" : "int", + "value" : 7 + }, + { + "name" : "stability_check", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:green_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_bamboo_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:red_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cracked_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:sculk_catalyst", + "states" : [ + { + "name" : "bloom", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_catalyst", + "states" : [ + { + "name" : "bloom", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobblestone", + "states" : [] + }, + { + "name" : "minecraft:horn_coral", + "states" : [] + }, + { + "name" : "minecraft:yellow_concrete", + "states" : [] + }, + { + "name" : "minecraft:cyan_carpet", + "states" : [] + }, + { + "name" : "minecraft:oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:jungle_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:chalkboard", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:blue_terracotta", + "states" : [] + }, + { + "name" : "minecraft:sandstone", + "states" : [] + }, + { + "name" : "minecraft:brown_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:light_weighted_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:undyed_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone", + "states" : [] + }, + { + "name" : "minecraft:mycelium", + "states" : [] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "no_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "small_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thin" + } + ] + }, + { + "name" : "minecraft:bamboo", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "bamboo_leaf_size", + "type" : "string", + "value" : "large_leaves" + }, + { + "name" : "bamboo_stalk_thickness", + "type" : "string", + "value" : "thick" + } + ] + }, + { + "name" : "minecraft:quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:pale_oak_planks", + "states" : [] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:green_terracotta", + "states" : [] + }, + { + "name" : "minecraft:deepslate_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smithing_table", + "states" : [] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:player_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:weathered_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:poppy", + "states" : [] + }, + { + "name" : "minecraft:tuff_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:mossy_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:green_wool", + "states" : [] + }, + { + "name" : "minecraft:green_carpet", + "states" : [] + }, + { + "name" : "minecraft:prismarine_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pitcher_plant", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pitcher_plant", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:compound_creator", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:spruce_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:netherite_block", + "states" : [] + }, + { + "name" : "minecraft:pink_wool", + "states" : [] + }, + { + "name" : "minecraft:redstone_block", + "states" : [] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:redstone_wire", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:quartz_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:quartz_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:quartz_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:birch_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:loom", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_block", + "states" : [] + }, + { + "name" : "minecraft:end_stone", + "states" : [] + }, + { + "name" : "minecraft:polished_tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:mangrove_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:jungle_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:jungle_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:glowstone", + "states" : [] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:stone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_white_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:mud_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mud_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:farmland", + "states" : [ + { + "name" : "moisturized_amount", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:rail", + "states" : [ + { + "name" : "rail_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:hard_magenta_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:detector_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:blue_orchid", + "states" : [] + }, + { + "name" : "minecraft:green_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_granite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_terracotta", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:infested_cobblestone", + "states" : [] + }, + { + "name" : "minecraft:pink_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cracked_deepslate_tiles", + "states" : [] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brain_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:red_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobblestone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_nylium", + "states" : [] + }, + { + "name" : "minecraft:structure_void", + "states" : [] + }, + { + "name" : "minecraft:purple_concrete", + "states" : [] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:normal_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:normal_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hard_yellow_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:spruce_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_terracotta", + "states" : [] + }, + { + "name" : "minecraft:snow", + "states" : [] + }, + { + "name" : "minecraft:sand", + "states" : [] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:daylight_detector", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:mangrove_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:conduit", + "states" : [] + }, + { + "name" : "minecraft:slime", + "states" : [] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 2 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bone_block", + "states" : [ + { + "name" : "deprecated", + "type" : "int", + "value" : 3 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frame", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "item_frame_map_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "item_frame_photo_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:lapis_block", + "states" : [] + }, + { + "name" : "minecraft:coal_ore", + "states" : [] + }, + { + "name" : "minecraft:mossy_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:client_request_placeholder_block", + "states" : [] + }, + { + "name" : "minecraft:redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:bamboo_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:green_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:bubble_coral_block", + "states" : [] + }, + { + "name" : "minecraft:infested_chiseled_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:nether_brick_fence", + "states" : [] + }, + { + "name" : "minecraft:pink_tulip", + "states" : [] + }, + { + "name" : "minecraft:oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:deepslate_tile_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:deepslate_tile_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pink_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:pale_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dead_tube_coral", + "states" : [] + }, + { + "name" : "minecraft:nether_wart_block", + "states" : [] + }, + { + "name" : "minecraft:prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_blue", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:small_dripleaf_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:basalt", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_cyan_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:normal_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:normal_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_blue_terracotta", + "states" : [] + }, + { + "name" : "minecraft:lit_redstone_lamp", + "states" : [] + }, + { + "name" : "minecraft:hard_blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:hard_purple_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:diamond_ore", + "states" : [] + }, + { + "name" : "minecraft:warped_roots", + "states" : [] + }, + { + "name" : "minecraft:magenta_concrete", + "states" : [] + }, + { + "name" : "minecraft:dark_prismarine", + "states" : [] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sticky_piston", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:ender_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:medium_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:warped_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:warped_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sculk_sensor", + "states" : [ + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_sensor", + "states" : [ + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_sensor", + "states" : [ + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frog_spawn", + "states" : [] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:red_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:stripped_cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_planks", + "states" : [] + }, + { + "name" : "minecraft:fire_coral_block", + "states" : [] + }, + { + "name" : "minecraft:magenta_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:iron_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:honeycomb_block", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_ore", + "states" : [] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:daylight_detector_inverted", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:barrel", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_quartz", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:smooth_quartz", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:smooth_quartz", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:coarse_dirt", + "states" : [] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chorus_flower", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:orange_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:white_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:stripped_birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_birch_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cracked_nether_bricks", + "states" : [] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:powered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_lime_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:element_constructor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_tiles", + "states" : [] + }, + { + "name" : "minecraft:smooth_stone", + "states" : [] + }, + { + "name" : "minecraft:hard_light_gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:gray_terracotta", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:white_tulip", + "states" : [] + }, + { + "name" : "minecraft:lime_concrete", + "states" : [] + }, + { + "name" : "minecraft:black_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_mushroom", + "states" : [] + }, + { + "name" : "minecraft:gilded_blackstone", + "states" : [] + }, + { + "name" : "minecraft:hard_yellow_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:magenta_terracotta", + "states" : [] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_diorite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:reserved6", + "states" : [] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unknown", + "states" : [] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:lab_table", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:yellow_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sunflower", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sunflower", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_petals", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:infested_deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:infested_deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:infested_deepslate", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:soul_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:podzol", + "states" : [] + }, + { + "name" : "minecraft:copper_block", + "states" : [] + }, + { + "name" : "minecraft:lit_redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deadbush", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_bricks", + "states" : [] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_copper", + "states" : [] + }, + { + "name" : "minecraft:iron_ore", + "states" : [] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:frosted_ice", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:chipped_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:large_amethyst_bud", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:suspicious_gravel", + "states" : [ + { + "name" : "brushed_progress", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:flowing_water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:brick_block", + "states" : [] + }, + { + "name" : "minecraft:hard_glass", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:cave_vines", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:magenta_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:iron_bars", + "states" : [] + }, + { + "name" : "minecraft:white_terracotta", + "states" : [] + }, + { + "name" : "minecraft:stripped_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:light_blue_carpet", + "states" : [] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:melon_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:crimson_planks", + "states" : [] + }, + { + "name" : "minecraft:stripped_dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_dark_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:white_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:purple_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jukebox", + "states" : [] + }, + { + "name" : "minecraft:stripped_cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jigsaw", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "rotation", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:border_block", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:shroomlight", + "states" : [] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cornflower", + "states" : [] + }, + { + "name" : "minecraft:chiseled_polished_blackstone", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_tile_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glass_pane", + "states" : [] + }, + { + "name" : "minecraft:chiseled_deepslate", + "states" : [] + }, + { + "name" : "minecraft:cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:red_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:pale_oak_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:infested_stone_bricks", + "states" : [] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:acacia_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:raw_copper_block", + "states" : [] + }, + { + "name" : "minecraft:oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:oxidized_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:horn_coral_block", + "states" : [] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:beetroot", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:light_gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_planks", + "states" : [] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:golden_rail", + "states" : [ + { + "name" : "rail_data_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "rail_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cyan_wool", + "states" : [] + }, + { + "name" : "minecraft:petrified_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:petrified_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:deprecated_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:darkoak_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cyan_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cracked_deepslate_bricks", + "states" : [] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:fire_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:waxed_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:hard_light_blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dirt_with_roots", + "states" : [] + }, + { + "name" : "minecraft:coal_block", + "states" : [] + }, + { + "name" : "minecraft:white_wool", + "states" : [] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cut_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:composter", + "states" : [ + { + "name" : "composter_fill_level", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:waxed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:kelp", + "states" : [ + { + "name" : "kelp_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_bricks", + "states" : [] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:light_blue_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:rose_bush", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:rose_bush", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowering_azalea", + "states" : [] + }, + { + "name" : "minecraft:oxidized_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:blue_wool", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:weeping_vines", + "states" : [ + { + "name" : "weeping_vines_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:chorus_plant", + "states" : [] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:water", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mud_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:unpowered_repeater", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "repeater_delay", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:element_100", + "states" : [] + }, + { + "name" : "minecraft:element_101", + "states" : [] + }, + { + "name" : "minecraft:element_102", + "states" : [] + }, + { + "name" : "minecraft:element_103", + "states" : [] + }, + { + "name" : "minecraft:element_104", + "states" : [] + }, + { + "name" : "minecraft:element_105", + "states" : [] + }, + { + "name" : "minecraft:element_106", + "states" : [] + }, + { + "name" : "minecraft:element_107", + "states" : [] + }, + { + "name" : "minecraft:element_108", + "states" : [] + }, + { + "name" : "minecraft:element_109", + "states" : [] + }, + { + "name" : "minecraft:element_113", + "states" : [] + }, + { + "name" : "minecraft:element_112", + "states" : [] + }, + { + "name" : "minecraft:element_111", + "states" : [] + }, + { + "name" : "minecraft:element_110", + "states" : [] + }, + { + "name" : "minecraft:element_117", + "states" : [] + }, + { + "name" : "minecraft:element_116", + "states" : [] + }, + { + "name" : "minecraft:element_115", + "states" : [] + }, + { + "name" : "minecraft:element_114", + "states" : [] + }, + { + "name" : "minecraft:element_118", + "states" : [] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:andesite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:white_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:moving_block", + "states" : [] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:trapped_chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brain_coral_block", + "states" : [] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:bamboo_planks", + "states" : [] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 26 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 27 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 28 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 29 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 30 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 31 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 32 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 33 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 34 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 35 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 36 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 37 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 38 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 39 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 40 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 41 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 42 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 43 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 44 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 45 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 46 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 47 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 48 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 49 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 50 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 51 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 52 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 53 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 54 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 55 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 56 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 57 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 58 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 59 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 60 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 61 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 62 + } + ] + }, + { + "name" : "minecraft:glow_lichen", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 63 + } + ] + }, + { + "name" : "minecraft:purpur_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:purpur_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:purpur_pillar", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wall_banner", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:twisting_vines", + "states" : [ + { + "name" : "twisting_vines_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:acacia_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:acacia_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oak_fence", + "states" : [] + }, + { + "name" : "minecraft:pale_moss_block", + "states" : [] + }, + { + "name" : "minecraft:soul_lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:soul_lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dirt", + "states" : [] + }, + { + "name" : "minecraft:blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:deny", + "states" : [] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bee_nest", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bubble_column", + "states" : [ + { + "name" : "drag_down", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bubble_column", + "states" : [ + { + "name" : "drag_down", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:smooth_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_stone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:light_blue_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:soul_soil", + "states" : [] + }, + { + "name" : "minecraft:soul_sand", + "states" : [] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:granite_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_diorite", + "states" : [] + }, + { + "name" : "minecraft:reinforced_deepslate", + "states" : [] + }, + { + "name" : "minecraft:fletching_table", + "states" : [] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:creeper_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:black_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dragon_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:calibrated_sculk_sensor", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "sculk_sensor_phase", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:dark_prismarine_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_acacia_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_fence", + "states" : [] + }, + { + "name" : "minecraft:crafting_table", + "states" : [] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 0 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 1 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 2 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 3 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 0 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 1 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 2 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sea_pickle", + "states" : [ + { + "name" : "cluster_count", + "type" : "int", + "value" : 3 + }, + { + "name" : "dead_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cherry_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:brown_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:end_rod", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:green_concrete", + "states" : [] + }, + { + "name" : "minecraft:tuff_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:crimson_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:warped_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:warped_wart_block", + "states" : [] + }, + { + "name" : "minecraft:light_gray_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:resin_bricks", + "states" : [] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:carrots", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:yellow_carpet", + "states" : [] + }, + { + "name" : "minecraft:cyan_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:black_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral", + "states" : [] + }, + { + "name" : "minecraft:andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:grass_block", + "states" : [] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tripwire_hook", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:cave_vines_body_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:dark_oak_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_black_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:stripped_birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_birch_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:tinted_glass", + "states" : [] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 0 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "none" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "unstable" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "partial_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:big_dripleaf", + "states" : [ + { + "name" : "big_dripleaf_head", + "type" : "byte", + "value" : 1 + }, + { + "name" : "big_dripleaf_tilt", + "type" : "string", + "value" : "full_tilt" + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:cut_sandstone", + "states" : [] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_wool", + "states" : [] + }, + { + "name" : "minecraft:blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blue_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:sweet_berry_bush", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_blackstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:reeds", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:black_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:jungle_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_sandstone", + "states" : [] + }, + { + "name" : "minecraft:barrier", + "states" : [] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:torchflower_crop", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:black_carpet", + "states" : [] + }, + { + "name" : "minecraft:pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:pale_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:jungle_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cherry_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cherry_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:fire", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:fern", + "states" : [] + }, + { + "name" : "minecraft:purpur_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:purpur_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:torchflower", + "states" : [] + }, + { + "name" : "minecraft:infested_stone", + "states" : [] + }, + { + "name" : "minecraft:pale_hanging_moss", + "states" : [ + { + "name" : "tip", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_hanging_moss", + "states" : [ + { + "name" : "tip", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_moss_carpet", + "states" : [ + { + "name" : "pale_moss_carpet_side_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "pale_moss_carpet_side_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:end_portal_frame", + "states" : [ + { + "name" : "end_portal_eye_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:bamboo_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:prismarine", + "states" : [] + }, + { + "name" : "minecraft:magenta_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:magenta_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:mushroom_stem", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:black_terracotta", + "states" : [] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:resin_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_gold_ore", + "states" : [] + }, + { + "name" : "minecraft:ancient_debris", + "states" : [] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "inactive" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "active" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "unlocking" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:vault", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "vault_state", + "type" : "string", + "value" : "ejecting" + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:beehive", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "honey_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:hard_orange_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:glass", + "states" : [] + }, + { + "name" : "minecraft:wither_rose", + "states" : [] + }, + { + "name" : "minecraft:nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:nether_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_roots", + "states" : [] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:yellow_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_mosaic_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_concrete", + "states" : [] + }, + { + "name" : "minecraft:cherry_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cherry_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:chiseled_resin_bricks", + "states" : [] + }, + { + "name" : "minecraft:bubble_coral", + "states" : [] + }, + { + "name" : "minecraft:orange_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_gray_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:acacia_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_granite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tuff_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral", + "states" : [] + }, + { + "name" : "minecraft:stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:stone_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:stripped_spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_spruce_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pumpkin_stem", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves_flowered", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_magenta_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sticky_piston_arm_collision", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_nylium", + "states" : [] + }, + { + "name" : "minecraft:deepslate_emerald_ore", + "states" : [] + }, + { + "name" : "minecraft:acacia_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:quartz_bricks", + "states" : [] + }, + { + "name" : "minecraft:andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unpowered_comparator", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "output_lit_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "output_subtract_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "data" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "save" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "load" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "corner" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "invalid" + } + ] + }, + { + "name" : "minecraft:structure_block", + "states" : [ + { + "name" : "structure_block_type", + "type" : "string", + "value" : "export" + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:end_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purple_terracotta", + "states" : [] + }, + { + "name" : "minecraft:target", + "states" : [] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wooden_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:end_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:end_stone_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hard_lime_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pearlescent_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:pearlescent_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:pearlescent_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:tall_grass", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tall_grass", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:light_block_12", + "states" : [] + }, + { + "name" : "minecraft:light_block_13", + "states" : [] + }, + { + "name" : "minecraft:light_block_10", + "states" : [] + }, + { + "name" : "minecraft:light_block_11", + "states" : [] + }, + { + "name" : "minecraft:light_block_14", + "states" : [] + }, + { + "name" : "minecraft:light_block_15", + "states" : [] + }, + { + "name" : "minecraft:nether_sprouts", + "states" : [] + }, + { + "name" : "minecraft:cyan_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:dead_horn_coral_block", + "states" : [] + }, + { + "name" : "minecraft:verdant_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:verdant_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:verdant_froglight", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:hard_gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:resin_block", + "states" : [] + }, + { + "name" : "minecraft:warped_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:warped_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:large_fern", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:large_fern", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_hyphae", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cocoa", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "up_east_west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lever", + "states" : [ + { + "name" : "lever_direction", + "type" : "string", + "value" : "down_north_south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:bamboo_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:hard_green_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_green", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:moss_block", + "states" : [] + }, + { + "name" : "minecraft:purple_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pink_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:short_grass", + "states" : [] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_weathered_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:chain_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:red_nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:red_nether_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:exposed_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:exposed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:green_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:jungle_planks", + "states" : [] + }, + { + "name" : "minecraft:deepslate_redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:dead_brain_coral_block", + "states" : [] + }, + { + "name" : "minecraft:mangrove_fence", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tuff_bricks", + "states" : [] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate", + "states" : [] + }, + { + "name" : "minecraft:quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bookshelf", + "states" : [] + }, + { + "name" : "minecraft:mud", + "states" : [] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:ice", + "states" : [] + }, + { + "name" : "minecraft:air", + "states" : [] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bed", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "head_piece_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "occupied_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:black_concrete", + "states" : [] + }, + { + "name" : "minecraft:tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tnt", + "states" : [ + { + "name" : "explode_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:web", + "states" : [] + }, + { + "name" : "minecraft:dead_tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:pale_oak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_diorite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:orange_concrete", + "states" : [] + }, + { + "name" : "minecraft:crying_obsidian", + "states" : [] + }, + { + "name" : "minecraft:lime_carpet", + "states" : [] + }, + { + "name" : "minecraft:closed_eyeblossom", + "states" : [] + }, + { + "name" : "minecraft:dead_fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_fire_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:decorated_pot", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:enchanting_table", + "states" : [] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_exposed_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bubble_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:orange_tulip", + "states" : [] + }, + { + "name" : "minecraft:brown_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:azalea", + "states" : [] + }, + { + "name" : "minecraft:mud_bricks", + "states" : [] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:acacia_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:gray_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hopper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_red_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bell", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "toggle_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lectern", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:stripped_crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_crimson_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:standing_banner", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:light_blue_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:jungle_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_propagule", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + }, + { + "name" : "propagule_stage", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cactus", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:budding_amethyst", + "states" : [] + }, + { + "name" : "minecraft:sniffer_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + } + ] + }, + { + "name" : "minecraft:sniffer_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + } + ] + }, + { + "name" : "minecraft:sniffer_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + } + ] + }, + { + "name" : "minecraft:polished_diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_diorite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:purple_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:green_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:bedrock", + "states" : [ + { + "name" : "infiniburn_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bedrock", + "states" : [ + { + "name" : "infiniburn_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:spruce_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:blackstone_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:blue_ice", + "states" : [] + }, + { + "name" : "minecraft:cyan_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:hard_red_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_andesite_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:piglin_head", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sculk", + "states" : [] + }, + { + "name" : "minecraft:hard_purple_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:netherrack", + "states" : [] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:spruce_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:mangrove_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:orange_carpet", + "states" : [] + }, + { + "name" : "minecraft:dead_horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_horn_coral_fan", + "states" : [ + { + "name" : "coral_fan_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lantern", + "states" : [ + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_weathered_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:pink_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:light_blue_wool", + "states" : [] + }, + { + "name" : "minecraft:allow", + "states" : [] + }, + { + "name" : "minecraft:dark_oak_fence", + "states" : [] + }, + { + "name" : "minecraft:deprecated_purpur_block_2", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_2", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_2", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_1", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_1", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:deprecated_purpur_block_1", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:chest", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:cherry_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:chain", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:chain", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:chain", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:clay", + "states" : [] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cake", + "states" : [ + { + "name" : "bite_counter", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_hanging_sign", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 26 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 27 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 28 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 29 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 30 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 31 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 32 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 33 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 34 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 35 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 36 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 37 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 38 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 39 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 40 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 41 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 42 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 43 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 44 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 45 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 46 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 47 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 48 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 49 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 50 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 51 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 52 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 53 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 54 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 55 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 56 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 57 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 58 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 59 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 60 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 61 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 62 + } + ] + }, + { + "name" : "minecraft:sculk_vein", + "states" : [ + { + "name" : "multi_face_direction_bits", + "type" : "int", + "value" : 63 + } + ] + }, + { + "name" : "minecraft:dead_brain_coral", + "states" : [] + }, + { + "name" : "minecraft:deepslate_coal_ore", + "states" : [] + }, + { + "name" : "minecraft:weathered_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:warped_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:polished_andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_andesite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:cracked_polished_blackstone_bricks", + "states" : [] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:bamboo_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:flowing_lava", + "states" : [ + { + "name" : "liquid_depth", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wither_skeleton_skull", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_tuff", + "states" : [] + }, + { + "name" : "minecraft:magenta_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:hard_white_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:acacia_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:hard_cyan_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:chiseled_nether_bricks", + "states" : [] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:warped_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:red_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:light_gray_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:deepslate_lapis_ore", + "states" : [] + }, + { + "name" : "minecraft:dead_bubble_coral", + "states" : [] + }, + { + "name" : "minecraft:cherry_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:cherry_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:white_carpet", + "states" : [] + }, + { + "name" : "minecraft:cyan_concrete", + "states" : [] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_tuff_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dragon_egg", + "states" : [] + }, + { + "name" : "minecraft:blue_concrete", + "states" : [] + }, + { + "name" : "minecraft:nether_brick", + "states" : [] + }, + { + "name" : "minecraft:deepslate_iron_ore", + "states" : [] + }, + { + "name" : "minecraft:element_1", + "states" : [] + }, + { + "name" : "minecraft:element_0", + "states" : [] + }, + { + "name" : "minecraft:element_3", + "states" : [] + }, + { + "name" : "minecraft:element_2", + "states" : [] + }, + { + "name" : "minecraft:element_5", + "states" : [] + }, + { + "name" : "minecraft:element_4", + "states" : [] + }, + { + "name" : "minecraft:element_7", + "states" : [] + }, + { + "name" : "minecraft:element_6", + "states" : [] + }, + { + "name" : "minecraft:element_9", + "states" : [] + }, + { + "name" : "minecraft:element_8", + "states" : [] + }, + { + "name" : "minecraft:oxeye_daisy", + "states" : [] + }, + { + "name" : "minecraft:camera", + "states" : [] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:wheat", + "states" : [ + { + "name" : "growth", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper", + "states" : [] + }, + { + "name" : "minecraft:resin_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:resin_brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:heavy_core", + "states" : [] + }, + { + "name" : "minecraft:cobbled_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lilac", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lilac", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:chiseled_quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:chiseled_quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:chiseled_quartz_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:spore_blossom", + "states" : [] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:crimson_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:darkoak_standing_sign", + "states" : [ + { + "name" : "ground_sign_direction", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:weathered_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:emerald_ore", + "states" : [] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:brown_mushroom_block", + "states" : [ + { + "name" : "huge_mushroom_bits", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:gray_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:petrified_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:petrified_oak_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:gray_concrete", + "states" : [] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pink_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_nether_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purple_shulker_box", + "states" : [] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:carved_pumpkin", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dropper", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:spruce_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:stripped_warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_warped_stem", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_andesite_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "tip" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "frustum" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "middle" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "base" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "merge" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "tip" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "frustum" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "middle" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "base" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pointed_dripstone", + "states" : [ + { + "name" : "dripstone_thickness", + "type" : "string", + "value" : "merge" + }, + { + "name" : "hanging", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:red_carpet", + "states" : [] + }, + { + "name" : "minecraft:netherreactor", + "states" : [] + }, + { + "name" : "minecraft:cut_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cut_red_sandstone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dark_prismarine_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 0 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "uprooted" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "dormant" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:creaking_heart", + "states" : [ + { + "name" : "creaking_heart_state", + "type" : "string", + "value" : "awake" + }, + { + "name" : "natural", + "type" : "byte", + "value" : 1 + }, + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:pale_oak_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:chiseled_tuff_bricks", + "states" : [] + }, + { + "name" : "minecraft:light_blue_concrete", + "states" : [] + }, + { + "name" : "minecraft:red_tulip", + "states" : [] + }, + { + "name" : "minecraft:chemical_heat", + "states" : [] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trip_wire", + "states" : [ + { + "name" : "attached_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "disarmed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "suspended_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "water" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "lava" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cauldron", + "states" : [ + { + "name" : "cauldron_liquid", + "type" : "string", + "value" : "powder_snow" + }, + { + "name" : "fill_level", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 16 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 17 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 18 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 19 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 20 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 21 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 22 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 23 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 24 + } + ] + }, + { + "name" : "minecraft:cave_vines_head_with_berries", + "states" : [ + { + "name" : "growing_plant_age", + "type" : "int", + "value" : 25 + } + ] + }, + { + "name" : "minecraft:tube_coral_block", + "states" : [] + }, + { + "name" : "minecraft:chiseled_red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:dead_tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dark_oak_trapdoor", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:hard_pink_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:orange_terracotta", + "states" : [] + }, + { + "name" : "minecraft:brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:brick_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper", + "states" : [] + }, + { + "name" : "minecraft:oak_planks", + "states" : [] + }, + { + "name" : "minecraft:stripped_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_oak_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:smooth_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_stone_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_andesite", + "states" : [] + }, + { + "name" : "minecraft:sea_lantern", + "states" : [] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brewing_stand", + "states" : [ + { + "name" : "brewing_stand_slot_a_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_b_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "brewing_stand_slot_c_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:bamboo_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:bamboo_sapling", + "states" : [ + { + "name" : "age_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper_bulb", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "powered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:blast_furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:crimson_roots", + "states" : [] + }, + { + "name" : "minecraft:acacia_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:acacia_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:stonecutter_block", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:smooth_quartz_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:yellow_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:white_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:white_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lime_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:end_portal", + "states" : [] + }, + { + "name" : "minecraft:yellow_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:jungle_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:jungle_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:polished_granite_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:spruce_wood", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:blackstone", + "states" : [] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:acacia_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:lit_deepslate_redstone_ore", + "states" : [] + }, + { + "name" : "minecraft:element_10", + "states" : [] + }, + { + "name" : "minecraft:element_11", + "states" : [] + }, + { + "name" : "minecraft:element_12", + "states" : [] + }, + { + "name" : "minecraft:element_13", + "states" : [] + }, + { + "name" : "minecraft:element_14", + "states" : [] + }, + { + "name" : "minecraft:element_15", + "states" : [] + }, + { + "name" : "minecraft:element_16", + "states" : [] + }, + { + "name" : "minecraft:element_17", + "states" : [] + }, + { + "name" : "minecraft:element_18", + "states" : [] + }, + { + "name" : "minecraft:element_19", + "states" : [] + }, + { + "name" : "minecraft:element_36", + "states" : [] + }, + { + "name" : "minecraft:element_37", + "states" : [] + }, + { + "name" : "minecraft:element_34", + "states" : [] + }, + { + "name" : "minecraft:element_35", + "states" : [] + }, + { + "name" : "minecraft:element_32", + "states" : [] + }, + { + "name" : "minecraft:element_33", + "states" : [] + }, + { + "name" : "minecraft:element_30", + "states" : [] + }, + { + "name" : "minecraft:element_31", + "states" : [] + }, + { + "name" : "minecraft:element_38", + "states" : [] + }, + { + "name" : "minecraft:element_39", + "states" : [] + }, + { + "name" : "minecraft:element_29", + "states" : [] + }, + { + "name" : "minecraft:element_28", + "states" : [] + }, + { + "name" : "minecraft:element_21", + "states" : [] + }, + { + "name" : "minecraft:element_20", + "states" : [] + }, + { + "name" : "minecraft:element_23", + "states" : [] + }, + { + "name" : "minecraft:element_22", + "states" : [] + }, + { + "name" : "minecraft:element_25", + "states" : [] + }, + { + "name" : "minecraft:element_24", + "states" : [] + }, + { + "name" : "minecraft:element_27", + "states" : [] + }, + { + "name" : "minecraft:element_26", + "states" : [] + }, + { + "name" : "minecraft:element_58", + "states" : [] + }, + { + "name" : "minecraft:element_59", + "states" : [] + }, + { + "name" : "minecraft:element_54", + "states" : [] + }, + { + "name" : "minecraft:element_55", + "states" : [] + }, + { + "name" : "minecraft:element_56", + "states" : [] + }, + { + "name" : "minecraft:element_57", + "states" : [] + }, + { + "name" : "minecraft:element_50", + "states" : [] + }, + { + "name" : "minecraft:element_51", + "states" : [] + }, + { + "name" : "minecraft:element_52", + "states" : [] + }, + { + "name" : "minecraft:element_53", + "states" : [] + }, + { + "name" : "minecraft:element_49", + "states" : [] + }, + { + "name" : "minecraft:element_48", + "states" : [] + }, + { + "name" : "minecraft:element_47", + "states" : [] + }, + { + "name" : "minecraft:element_46", + "states" : [] + }, + { + "name" : "minecraft:element_45", + "states" : [] + }, + { + "name" : "minecraft:element_44", + "states" : [] + }, + { + "name" : "minecraft:element_43", + "states" : [] + }, + { + "name" : "minecraft:element_42", + "states" : [] + }, + { + "name" : "minecraft:element_41", + "states" : [] + }, + { + "name" : "minecraft:element_40", + "states" : [] + }, + { + "name" : "minecraft:element_72", + "states" : [] + }, + { + "name" : "minecraft:element_73", + "states" : [] + }, + { + "name" : "minecraft:element_70", + "states" : [] + }, + { + "name" : "minecraft:element_71", + "states" : [] + }, + { + "name" : "minecraft:element_76", + "states" : [] + }, + { + "name" : "minecraft:element_77", + "states" : [] + }, + { + "name" : "minecraft:element_74", + "states" : [] + }, + { + "name" : "minecraft:element_75", + "states" : [] + }, + { + "name" : "minecraft:element_78", + "states" : [] + }, + { + "name" : "minecraft:element_79", + "states" : [] + }, + { + "name" : "minecraft:element_65", + "states" : [] + }, + { + "name" : "minecraft:element_64", + "states" : [] + }, + { + "name" : "minecraft:element_67", + "states" : [] + }, + { + "name" : "minecraft:element_66", + "states" : [] + }, + { + "name" : "minecraft:element_61", + "states" : [] + }, + { + "name" : "minecraft:element_60", + "states" : [] + }, + { + "name" : "minecraft:element_63", + "states" : [] + }, + { + "name" : "minecraft:element_62", + "states" : [] + }, + { + "name" : "minecraft:element_69", + "states" : [] + }, + { + "name" : "minecraft:element_68", + "states" : [] + }, + { + "name" : "minecraft:element_98", + "states" : [] + }, + { + "name" : "minecraft:element_99", + "states" : [] + }, + { + "name" : "minecraft:element_90", + "states" : [] + }, + { + "name" : "minecraft:element_91", + "states" : [] + }, + { + "name" : "minecraft:element_92", + "states" : [] + }, + { + "name" : "minecraft:element_93", + "states" : [] + }, + { + "name" : "minecraft:element_94", + "states" : [] + }, + { + "name" : "minecraft:element_95", + "states" : [] + }, + { + "name" : "minecraft:element_96", + "states" : [] + }, + { + "name" : "minecraft:element_97", + "states" : [] + }, + { + "name" : "minecraft:element_89", + "states" : [] + }, + { + "name" : "minecraft:element_88", + "states" : [] + }, + { + "name" : "minecraft:element_83", + "states" : [] + }, + { + "name" : "minecraft:element_82", + "states" : [] + }, + { + "name" : "minecraft:element_81", + "states" : [] + }, + { + "name" : "minecraft:element_80", + "states" : [] + }, + { + "name" : "minecraft:element_87", + "states" : [] + }, + { + "name" : "minecraft:element_86", + "states" : [] + }, + { + "name" : "minecraft:element_85", + "states" : [] + }, + { + "name" : "minecraft:element_84", + "states" : [] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:lit_smoker", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:lapis_ore", + "states" : [] + }, + { + "name" : "minecraft:red_concrete", + "states" : [] + }, + { + "name" : "minecraft:pink_carpet", + "states" : [] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:smooth_quartz_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:red_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:red_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:azalea_leaves", + "states" : [ + { + "name" : "persistent_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "update_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:purpur_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:purpur_block", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:cherry_wall_sign", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 0 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 1 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 2 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cyan_candle", + "states" : [ + { + "name" : "candles", + "type" : "int", + "value" : 3 + }, + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper", + "states" : [] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:repeating_command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_purple", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:nether_wart", + "states" : [ + { + "name" : "age", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purple_carpet", + "states" : [] + }, + { + "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:crimson_fungus", + "states" : [] + }, + { + "name" : "minecraft:cherry_planks", + "states" : [] + }, + { + "name" : "minecraft:polished_deepslate", + "states" : [] + }, + { + "name" : "minecraft:tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:tuff_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:smooth_red_sandstone", + "states" : [] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:purpur_stairs", + "states" : [ + { + "name" : "upside_down_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "weirdo_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:tube_coral", + "states" : [] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:portal", + "states" : [ + { + "name" : "portal_axis", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:portal", + "states" : [ + { + "name" : "portal_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:portal", + "states" : [ + { + "name" : "portal_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:birch_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:peony", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:peony", + "states" : [ + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:command_block", + "states" : [ + { + "name" : "conditional_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:polished_blackstone_button", + "states" : [ + { + "name" : "button_pressed_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 0 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "down_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_east" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_north" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_south" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "up_west" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "west_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "east_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "north_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crafter", + "states" : [ + { + "name" : "crafting", + "type" : "byte", + "value" : 1 + }, + { + "name" : "orientation", + "type" : "string", + "value" : "south_up" + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:spruce_planks", + "states" : [] + }, + { + "name" : "minecraft:mossy_cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:mossy_cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:furnace", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:info_update2", + "states" : [] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "down" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "up" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:amethyst_cluster", + "states" : [ + { + "name" : "minecraft:block_face", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:waxed_chiseled_copper", + "states" : [] + }, + { + "name" : "minecraft:waxed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:waxed_cut_copper_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:polished_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:prismarine_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:prismarine_brick_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:dried_kelp_block", + "states" : [] + }, + { + "name" : "minecraft:hard_light_gray_stained_glass", + "states" : [] + }, + { + "name" : "minecraft:crimson_fence", + "states" : [] + }, + { + "name" : "minecraft:chiseled_tuff", + "states" : [] + }, + { + "name" : "minecraft:lime_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "one_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "two_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "three_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "no_cracks" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "four_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "one_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "two_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "three_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "four_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "one_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "two_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "three_egg" + } + ] + }, + { + "name" : "minecraft:turtle_egg", + "states" : [ + { + "name" : "cracked_state", + "type" : "string", + "value" : "max_cracked" + }, + { + "name" : "turtle_egg_count", + "type" : "string", + "value" : "four_egg" + } + ] + }, + { + "name" : "minecraft:magma", + "states" : [] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:dispenser", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + }, + { + "name" : "triggered_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:brown_terracotta", + "states" : [] + }, + { + "name" : "minecraft:cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:cobblestone_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:deepslate_diamond_ore", + "states" : [] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "standing" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "hanging" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "side" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:grindstone", + "states" : [ + { + "name" : "attachment", + "type" : "string", + "value" : "multiple" + }, + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:light_gray_wool", + "states" : [] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:soul_campfire", + "states" : [ + { + "name" : "extinguished", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:prismarine_bricks", + "states" : [] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:wooden_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:sandstone_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:birch_fence", + "states" : [] + }, + { + "name" : "minecraft:lime_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:lime_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:waxed_oxidized_copper_grate", + "states" : [] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:damaged_anvil", + "states" : [ + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:birch_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:birch_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:white_concrete", + "states" : [] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:material_reducer", + "states" : [ + { + "name" : "direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 0 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:trial_spawner", + "states" : [ + { + "name" : "ominous", + "type" : "byte", + "value" : 1 + }, + { + "name" : "trial_spawner_state", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:acacia_fence", + "states" : [] + }, + { + "name" : "minecraft:grass_path", + "states" : [] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:resin_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:orange_concrete_powder", + "states" : [] + }, + { + "name" : "minecraft:orange_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:orange_candle_cake", + "states" : [ + { + "name" : "lit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:weathered_copper", + "states" : [] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "none" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "short" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:mossy_stone_brick_wall", + "states" : [ + { + "name" : "wall_connection_type_east", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_north", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_south", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_connection_type_west", + "type" : "string", + "value" : "tall" + }, + { + "name" : "wall_post_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:unlit_redstone_torch", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:pale_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "bottom" + } + ] + }, + { + "name" : "minecraft:pale_oak_double_slab", + "states" : [ + { + "name" : "minecraft:vertical_half", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lime_terracotta", + "states" : [] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:cherry_fence_gate", + "states" : [ + { + "name" : "in_wall_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:gray_glazed_terracotta", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "unknown" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "west" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "east" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "north" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "south" + } + ] + }, + { + "name" : "minecraft:colored_torch_red", + "states" : [ + { + "name" : "torch_facing_direction", + "type" : "string", + "value" : "top" + } + ] + }, + { + "name" : "minecraft:lodestone", + "states" : [] + }, + { + "name" : "minecraft:bamboo_mosaic", + "states" : [] + }, + { + "name" : "minecraft:hard_blue_stained_glass_pane", + "states" : [] + }, + { + "name" : "minecraft:raw_iron_block", + "states" : [] + }, + { + "name" : "minecraft:light_gray_carpet", + "states" : [] + }, + { + "name" : "minecraft:purple_wool", + "states" : [] + }, + { + "name" : "minecraft:iron_block", + "states" : [] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:ladder", + "states" : [ + { + "name" : "facing_direction", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 4 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 5 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 6 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 7 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 8 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 9 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 10 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 11 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 12 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 13 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 14 + } + ] + }, + { + "name" : "minecraft:crimson_pressure_plate", + "states" : [ + { + "name" : "redstone_signal", + "type" : "int", + "value" : 15 + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "y" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "x" + } + ] + }, + { + "name" : "minecraft:stripped_mangrove_log", + "states" : [ + { + "name" : "pillar_axis", + "type" : "string", + "value" : "z" + } + ] + }, + { + "name" : "minecraft:gravel", + "states" : [] + }, + { + "name" : "minecraft:cartography_table", + "states" : [] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 0 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "south" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "west" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "north" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:oxidized_copper_door", + "states" : [ + { + "name" : "door_hinge_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "minecraft:cardinal_direction", + "type" : "string", + "value" : "east" + }, + { + "name" : "open_bit", + "type" : "byte", + "value" : 1 + }, + { + "name" : "upper_block_bit", + "type" : "byte", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 0 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 1 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 2 + } + ] + }, + { + "name" : "minecraft:tube_coral_wall_fan", + "states" : [ + { + "name" : "coral_direction", + "type" : "int", + "value" : 3 + } + ] + }, + { + "name" : "minecraft:dandelion", + "states" : [] + } + ] +} diff --git a/cli/data/bedrock/1.21.60.0/item_names.json b/cli/data/bedrock/1.21.60.0/item_names.json new file mode 100644 index 0000000..abb4713 --- /dev/null +++ b/cli/data/bedrock/1.21.60.0/item_names.json @@ -0,0 +1,7154 @@ +{ + "minecraft:acacia_boat" : { + "id" : 405, + "item" : true + }, + "minecraft:acacia_button" : { + "id" : -140, + "item" : false + }, + "minecraft:acacia_chest_boat" : { + "id" : 679, + "item" : true + }, + "minecraft:acacia_door" : { + "id" : 589, + "item" : true + }, + "minecraft:acacia_double_slab" : { + "id" : -812, + "item" : false + }, + "minecraft:acacia_fence" : { + "id" : -575, + "item" : false + }, + "minecraft:acacia_fence_gate" : { + "id" : 187, + "item" : false + }, + "minecraft:acacia_hanging_sign" : { + "id" : -504, + "item" : true + }, + "minecraft:acacia_leaves" : { + "id" : 161, + "item" : false + }, + "minecraft:acacia_log" : { + "id" : 162, + "item" : false + }, + "minecraft:acacia_planks" : { + "id" : -742, + "item" : false + }, + "minecraft:acacia_pressure_plate" : { + "id" : -150, + "item" : false + }, + "minecraft:acacia_sapling" : { + "id" : -828, + "item" : false + }, + "minecraft:acacia_sign" : { + "id" : 612, + "item" : true + }, + "minecraft:acacia_slab" : { + "id" : -807, + "item" : false + }, + "minecraft:acacia_stairs" : { + "id" : 163, + "item" : false + }, + "minecraft:acacia_standing_sign" : { + "id" : -190, + "item" : false + }, + "minecraft:acacia_trapdoor" : { + "id" : -145, + "item" : false + }, + "minecraft:acacia_wall_sign" : { + "id" : -191, + "item" : false + }, + "minecraft:acacia_wood" : { + "id" : -817, + "item" : false + }, + "minecraft:activator_rail" : { + "id" : 126, + "item" : false + }, + "minecraft:agent_spawn_egg" : { + "id" : 515, + "item" : true + }, + "minecraft:air" : { + "id" : -158, + "item" : false + }, + "minecraft:allay_spawn_egg" : { + "id" : 668, + "item" : true + }, + "minecraft:allium" : { + "id" : -831, + "item" : false + }, + "minecraft:allow" : { + "id" : 210, + "item" : false + }, + "minecraft:amethyst_block" : { + "id" : -327, + "item" : false + }, + "minecraft:amethyst_cluster" : { + "id" : -329, + "item" : false + }, + "minecraft:amethyst_shard" : { + "id" : 661, + "item" : true + }, + "minecraft:ancient_debris" : { + "id" : -271, + "item" : false + }, + "minecraft:andesite" : { + "id" : -594, + "item" : false + }, + "minecraft:andesite_double_slab" : { + "id" : -920, + "item" : false + }, + "minecraft:andesite_slab" : { + "id" : -893, + "item" : false + }, + "minecraft:andesite_stairs" : { + "id" : -171, + "item" : false + }, + "minecraft:andesite_wall" : { + "id" : -974, + "item" : false + }, + "minecraft:angler_pottery_sherd" : { + "id" : 693, + "item" : true + }, + "minecraft:anvil" : { + "id" : 145, + "item" : false + }, + "minecraft:apple" : { + "id" : 278, + "item" : true + }, + "minecraft:archer_pottery_sherd" : { + "id" : 694, + "item" : true + }, + "minecraft:armadillo_scute" : { + "id" : 740, + "item" : true + }, + "minecraft:armadillo_spawn_egg" : { + "id" : 739, + "item" : true + }, + "minecraft:armor_stand" : { + "id" : 585, + "item" : true + }, + "minecraft:arms_up_pottery_sherd" : { + "id" : 695, + "item" : true + }, + "minecraft:arrow" : { + "id" : 325, + "item" : true + }, + "minecraft:axolotl_bucket" : { + "id" : 394, + "item" : true + }, + "minecraft:axolotl_spawn_egg" : { + "id" : 530, + "item" : true + }, + "minecraft:azalea" : { + "id" : -337, + "item" : false + }, + "minecraft:azalea_leaves" : { + "id" : -324, + "item" : false + }, + "minecraft:azalea_leaves_flowered" : { + "id" : -325, + "item" : false + }, + "minecraft:azure_bluet" : { + "id" : -832, + "item" : false + }, + "minecraft:baked_potato" : { + "id" : 303, + "item" : true + }, + "minecraft:balloon" : { + "id" : 635, + "item" : true + }, + "minecraft:bamboo" : { + "id" : -163, + "item" : false + }, + "minecraft:bamboo_block" : { + "id" : -527, + "item" : false + }, + "minecraft:bamboo_button" : { + "id" : -511, + "item" : false + }, + "minecraft:bamboo_chest_raft" : { + "id" : 691, + "item" : true + }, + "minecraft:bamboo_door" : { + "id" : -517, + "item" : true + }, + "minecraft:bamboo_double_slab" : { + "id" : -521, + "item" : false + }, + "minecraft:bamboo_fence" : { + "id" : -515, + "item" : false + }, + "minecraft:bamboo_fence_gate" : { + "id" : -516, + "item" : false + }, + "minecraft:bamboo_hanging_sign" : { + "id" : -522, + "item" : true + }, + "minecraft:bamboo_mosaic" : { + "id" : -509, + "item" : false + }, + "minecraft:bamboo_mosaic_double_slab" : { + "id" : -525, + "item" : false + }, + "minecraft:bamboo_mosaic_slab" : { + "id" : -524, + "item" : false + }, + "minecraft:bamboo_mosaic_stairs" : { + "id" : -523, + "item" : false + }, + "minecraft:bamboo_planks" : { + "id" : -510, + "item" : false + }, + "minecraft:bamboo_pressure_plate" : { + "id" : -514, + "item" : false + }, + "minecraft:bamboo_raft" : { + "id" : 690, + "item" : true + }, + "minecraft:bamboo_sapling" : { + "id" : -164, + "item" : false + }, + "minecraft:bamboo_sign" : { + "id" : 689, + "item" : true + }, + "minecraft:bamboo_slab" : { + "id" : -513, + "item" : false + }, + "minecraft:bamboo_stairs" : { + "id" : -512, + "item" : false + }, + "minecraft:bamboo_standing_sign" : { + "id" : -518, + "item" : false + }, + "minecraft:bamboo_trapdoor" : { + "id" : -520, + "item" : false + }, + "minecraft:bamboo_wall_sign" : { + "id" : -519, + "item" : false + }, + "minecraft:banner" : { + "id" : 600, + "item" : true + }, + "minecraft:banner_pattern" : { + "id" : 793, + "item" : true + }, + "minecraft:barrel" : { + "id" : -203, + "item" : false + }, + "minecraft:barrier" : { + "id" : -161, + "item" : false + }, + "minecraft:basalt" : { + "id" : -234, + "item" : false + }, + "minecraft:bat_spawn_egg" : { + "id" : 480, + "item" : true + }, + "minecraft:beacon" : { + "id" : 138, + "item" : false + }, + "minecraft:bed" : { + "id" : 444, + "item" : true + }, + "minecraft:bedrock" : { + "id" : 7, + "item" : false + }, + "minecraft:bee_nest" : { + "id" : -218, + "item" : false + }, + "minecraft:bee_spawn_egg" : { + "id" : 522, + "item" : true + }, + "minecraft:beef" : { + "id" : 295, + "item" : true + }, + "minecraft:beehive" : { + "id" : -219, + "item" : false + }, + "minecraft:beetroot" : { + "id" : 307, + "item" : true + }, + "minecraft:beetroot_seeds" : { + "id" : 317, + "item" : true + }, + "minecraft:beetroot_soup" : { + "id" : 308, + "item" : true + }, + "minecraft:bell" : { + "id" : -206, + "item" : false + }, + "minecraft:big_dripleaf" : { + "id" : -323, + "item" : false + }, + "minecraft:birch_boat" : { + "id" : 402, + "item" : true + }, + "minecraft:birch_button" : { + "id" : -141, + "item" : false + }, + "minecraft:birch_chest_boat" : { + "id" : 676, + "item" : true + }, + "minecraft:birch_door" : { + "id" : 587, + "item" : true + }, + "minecraft:birch_double_slab" : { + "id" : -810, + "item" : false + }, + "minecraft:birch_fence" : { + "id" : -576, + "item" : false + }, + "minecraft:birch_fence_gate" : { + "id" : 184, + "item" : false + }, + "minecraft:birch_hanging_sign" : { + "id" : -502, + "item" : true + }, + "minecraft:birch_leaves" : { + "id" : -801, + "item" : false + }, + "minecraft:birch_log" : { + "id" : -570, + "item" : false + }, + "minecraft:birch_planks" : { + "id" : -740, + "item" : false + }, + "minecraft:birch_pressure_plate" : { + "id" : -151, + "item" : false + }, + "minecraft:birch_sapling" : { + "id" : -826, + "item" : false + }, + "minecraft:birch_sign" : { + "id" : 610, + "item" : true + }, + "minecraft:birch_slab" : { + "id" : -805, + "item" : false + }, + "minecraft:birch_stairs" : { + "id" : 135, + "item" : false + }, + "minecraft:birch_standing_sign" : { + "id" : -186, + "item" : false + }, + "minecraft:birch_trapdoor" : { + "id" : -146, + "item" : false + }, + "minecraft:birch_wall_sign" : { + "id" : -187, + "item" : false + }, + "minecraft:birch_wood" : { + "id" : -815, + "item" : false + }, + "minecraft:black_bundle" : { + "id" : 272, + "item" : true + }, + "minecraft:black_candle" : { + "id" : -428, + "item" : false + }, + "minecraft:black_candle_cake" : { + "id" : -445, + "item" : false + }, + "minecraft:black_carpet" : { + "id" : -611, + "item" : false + }, + "minecraft:black_concrete" : { + "id" : -642, + "item" : false + }, + "minecraft:black_concrete_powder" : { + "id" : -723, + "item" : false + }, + "minecraft:black_dye" : { + "id" : 421, + "item" : true + }, + "minecraft:black_glazed_terracotta" : { + "id" : 235, + "item" : false + }, + "minecraft:black_shulker_box" : { + "id" : -627, + "item" : false + }, + "minecraft:black_stained_glass" : { + "id" : -687, + "item" : false + }, + "minecraft:black_stained_glass_pane" : { + "id" : -657, + "item" : false + }, + "minecraft:black_terracotta" : { + "id" : -738, + "item" : false + }, + "minecraft:black_wool" : { + "id" : -554, + "item" : false + }, + "minecraft:blackstone" : { + "id" : -273, + "item" : false + }, + "minecraft:blackstone_double_slab" : { + "id" : -283, + "item" : false + }, + "minecraft:blackstone_slab" : { + "id" : -282, + "item" : false + }, + "minecraft:blackstone_stairs" : { + "id" : -276, + "item" : false + }, + "minecraft:blackstone_wall" : { + "id" : -277, + "item" : false + }, + "minecraft:blade_pottery_sherd" : { + "id" : 696, + "item" : true + }, + "minecraft:blast_furnace" : { + "id" : -196, + "item" : false + }, + "minecraft:blaze_powder" : { + "id" : 456, + "item" : true + }, + "minecraft:blaze_rod" : { + "id" : 449, + "item" : true + }, + "minecraft:blaze_spawn_egg" : { + "id" : 483, + "item" : true + }, + "minecraft:bleach" : { + "id" : 633, + "item" : true + }, + "minecraft:blue_bundle" : { + "id" : 259, + "item" : true + }, + "minecraft:blue_candle" : { + "id" : -424, + "item" : false + }, + "minecraft:blue_candle_cake" : { + "id" : -441, + "item" : false + }, + "minecraft:blue_carpet" : { + "id" : -607, + "item" : false + }, + "minecraft:blue_concrete" : { + "id" : -638, + "item" : false + }, + "minecraft:blue_concrete_powder" : { + "id" : -719, + "item" : false + }, + "minecraft:blue_dye" : { + "id" : 425, + "item" : true + }, + "minecraft:blue_glazed_terracotta" : { + "id" : 231, + "item" : false + }, + "minecraft:blue_ice" : { + "id" : -11, + "item" : false + }, + "minecraft:blue_orchid" : { + "id" : -830, + "item" : false + }, + "minecraft:blue_shulker_box" : { + "id" : -623, + "item" : false + }, + "minecraft:blue_stained_glass" : { + "id" : -683, + "item" : false + }, + "minecraft:blue_stained_glass_pane" : { + "id" : -653, + "item" : false + }, + "minecraft:blue_terracotta" : { + "id" : -734, + "item" : false + }, + "minecraft:blue_wool" : { + "id" : -563, + "item" : false + }, + "minecraft:board" : { + "id" : 629, + "item" : true + }, + "minecraft:boat" : { + "id" : 791, + "item" : true + }, + "minecraft:bogged_spawn_egg" : { + "id" : 490, + "item" : true + }, + "minecraft:bolt_armor_trim_smithing_template" : { + "id" : 735, + "item" : true + }, + "minecraft:bone" : { + "id" : 441, + "item" : true + }, + "minecraft:bone_block" : { + "id" : 216, + "item" : false + }, + "minecraft:bone_meal" : { + "id" : 437, + "item" : true + }, + "minecraft:book" : { + "id" : 413, + "item" : true + }, + "minecraft:bookshelf" : { + "id" : 47, + "item" : false + }, + "minecraft:border_block" : { + "id" : 212, + "item" : false + }, + "minecraft:bordure_indented_banner_pattern" : { + "id" : 619, + "item" : true + }, + "minecraft:bow" : { + "id" : 324, + "item" : true + }, + "minecraft:bowl" : { + "id" : 346, + "item" : true + }, + "minecraft:brain_coral" : { + "id" : -581, + "item" : false + }, + "minecraft:brain_coral_block" : { + "id" : -849, + "item" : false + }, + "minecraft:brain_coral_fan" : { + "id" : -840, + "item" : false + }, + "minecraft:brain_coral_wall_fan" : { + "id" : -904, + "item" : false + }, + "minecraft:bread" : { + "id" : 283, + "item" : true + }, + "minecraft:breeze_rod" : { + "id" : 274, + "item" : true + }, + "minecraft:breeze_spawn_egg" : { + "id" : 529, + "item" : true + }, + "minecraft:brewer_pottery_sherd" : { + "id" : 697, + "item" : true + }, + "minecraft:brewing_stand" : { + "id" : 458, + "item" : true + }, + "minecraft:brick" : { + "id" : 409, + "item" : true + }, + "minecraft:brick_block" : { + "id" : 45, + "item" : false + }, + "minecraft:brick_double_slab" : { + "id" : -880, + "item" : false + }, + "minecraft:brick_slab" : { + "id" : -874, + "item" : false + }, + "minecraft:brick_stairs" : { + "id" : 108, + "item" : false + }, + "minecraft:brick_wall" : { + "id" : -976, + "item" : false + }, + "minecraft:brown_bundle" : { + "id" : 261, + "item" : true + }, + "minecraft:brown_candle" : { + "id" : -425, + "item" : false + }, + "minecraft:brown_candle_cake" : { + "id" : -442, + "item" : false + }, + "minecraft:brown_carpet" : { + "id" : -608, + "item" : false + }, + "minecraft:brown_concrete" : { + "id" : -639, + "item" : false + }, + "minecraft:brown_concrete_powder" : { + "id" : -720, + "item" : false + }, + "minecraft:brown_dye" : { + "id" : 424, + "item" : true + }, + "minecraft:brown_glazed_terracotta" : { + "id" : 232, + "item" : false + }, + "minecraft:brown_mushroom" : { + "id" : 39, + "item" : false + }, + "minecraft:brown_mushroom_block" : { + "id" : 99, + "item" : false + }, + "minecraft:brown_shulker_box" : { + "id" : -624, + "item" : false + }, + "minecraft:brown_stained_glass" : { + "id" : -684, + "item" : false + }, + "minecraft:brown_stained_glass_pane" : { + "id" : -654, + "item" : false + }, + "minecraft:brown_terracotta" : { + "id" : -735, + "item" : false + }, + "minecraft:brown_wool" : { + "id" : -555, + "item" : false + }, + "minecraft:brush" : { + "id" : 716, + "item" : true + }, + "minecraft:bubble_column" : { + "id" : -160, + "item" : false + }, + "minecraft:bubble_coral" : { + "id" : -582, + "item" : false + }, + "minecraft:bubble_coral_block" : { + "id" : -850, + "item" : false + }, + "minecraft:bubble_coral_fan" : { + "id" : -841, + "item" : false + }, + "minecraft:bubble_coral_wall_fan" : { + "id" : -136, + "item" : false + }, + "minecraft:bucket" : { + "id" : 385, + "item" : true + }, + "minecraft:budding_amethyst" : { + "id" : -328, + "item" : false + }, + "minecraft:bundle" : { + "id" : 262, + "item" : true + }, + "minecraft:burn_pottery_sherd" : { + "id" : 698, + "item" : true + }, + "minecraft:cactus" : { + "id" : 81, + "item" : false + }, + "minecraft:cake" : { + "id" : 443, + "item" : true + }, + "minecraft:calcite" : { + "id" : -326, + "item" : false + }, + "minecraft:calibrated_sculk_sensor" : { + "id" : -580, + "item" : false + }, + "minecraft:camel_spawn_egg" : { + "id" : 692, + "item" : true + }, + "minecraft:camera" : { + "id" : 630, + "item" : false + }, + "minecraft:campfire" : { + "id" : 624, + "item" : true + }, + "minecraft:candle" : { + "id" : -412, + "item" : false + }, + "minecraft:candle_cake" : { + "id" : -429, + "item" : false + }, + "minecraft:carpet" : { + "id" : 750, + "item" : true + }, + "minecraft:carrot" : { + "id" : 301, + "item" : true + }, + "minecraft:carrot_on_a_stick" : { + "id" : 550, + "item" : true + }, + "minecraft:carrots" : { + "id" : 141, + "item" : false + }, + "minecraft:cartography_table" : { + "id" : -200, + "item" : false + }, + "minecraft:carved_pumpkin" : { + "id" : -155, + "item" : false + }, + "minecraft:cat_spawn_egg" : { + "id" : 516, + "item" : true + }, + "minecraft:cauldron" : { + "id" : 459, + "item" : true + }, + "minecraft:cave_spider_spawn_egg" : { + "id" : 484, + "item" : true + }, + "minecraft:cave_vines" : { + "id" : -322, + "item" : false + }, + "minecraft:cave_vines_body_with_berries" : { + "id" : -375, + "item" : false + }, + "minecraft:cave_vines_head_with_berries" : { + "id" : -376, + "item" : false + }, + "minecraft:chain" : { + "id" : 656, + "item" : true + }, + "minecraft:chain_command_block" : { + "id" : 189, + "item" : false + }, + "minecraft:chainmail_boots" : { + "id" : 367, + "item" : true + }, + "minecraft:chainmail_chestplate" : { + "id" : 365, + "item" : true + }, + "minecraft:chainmail_helmet" : { + "id" : 364, + "item" : true + }, + "minecraft:chainmail_leggings" : { + "id" : 366, + "item" : true + }, + "minecraft:chalkboard" : { + "id" : 230, + "item" : false + }, + "minecraft:charcoal" : { + "id" : 327, + "item" : true + }, + "minecraft:chemical_heat" : { + "id" : 192, + "item" : false + }, + "minecraft:chemistry_table" : { + "id" : 785, + "item" : true + }, + "minecraft:cherry_boat" : { + "id" : 686, + "item" : true + }, + "minecraft:cherry_button" : { + "id" : -530, + "item" : false + }, + "minecraft:cherry_chest_boat" : { + "id" : 687, + "item" : true + }, + "minecraft:cherry_door" : { + "id" : -531, + "item" : true + }, + "minecraft:cherry_double_slab" : { + "id" : -540, + "item" : false + }, + "minecraft:cherry_fence" : { + "id" : -532, + "item" : false + }, + "minecraft:cherry_fence_gate" : { + "id" : -533, + "item" : false + }, + "minecraft:cherry_hanging_sign" : { + "id" : -534, + "item" : true + }, + "minecraft:cherry_leaves" : { + "id" : -548, + "item" : false + }, + "minecraft:cherry_log" : { + "id" : -536, + "item" : false + }, + "minecraft:cherry_planks" : { + "id" : -537, + "item" : false + }, + "minecraft:cherry_pressure_plate" : { + "id" : -538, + "item" : false + }, + "minecraft:cherry_sapling" : { + "id" : -547, + "item" : false + }, + "minecraft:cherry_sign" : { + "id" : 688, + "item" : true + }, + "minecraft:cherry_slab" : { + "id" : -539, + "item" : false + }, + "minecraft:cherry_stairs" : { + "id" : -541, + "item" : false + }, + "minecraft:cherry_standing_sign" : { + "id" : -542, + "item" : false + }, + "minecraft:cherry_trapdoor" : { + "id" : -543, + "item" : false + }, + "minecraft:cherry_wall_sign" : { + "id" : -544, + "item" : false + }, + "minecraft:cherry_wood" : { + "id" : -546, + "item" : false + }, + "minecraft:chest" : { + "id" : 54, + "item" : false + }, + "minecraft:chest_boat" : { + "id" : 682, + "item" : true + }, + "minecraft:chest_minecart" : { + "id" : 415, + "item" : true + }, + "minecraft:chicken" : { + "id" : 297, + "item" : true + }, + "minecraft:chicken_spawn_egg" : { + "id" : 462, + "item" : true + }, + "minecraft:chipped_anvil" : { + "id" : -959, + "item" : false + }, + "minecraft:chiseled_bookshelf" : { + "id" : -526, + "item" : false + }, + "minecraft:chiseled_copper" : { + "id" : -760, + "item" : false + }, + "minecraft:chiseled_deepslate" : { + "id" : -395, + "item" : false + }, + "minecraft:chiseled_nether_bricks" : { + "id" : -302, + "item" : false + }, + "minecraft:chiseled_polished_blackstone" : { + "id" : -279, + "item" : false + }, + "minecraft:chiseled_quartz_block" : { + "id" : -953, + "item" : false + }, + "minecraft:chiseled_red_sandstone" : { + "id" : -956, + "item" : false + }, + "minecraft:chiseled_resin_bricks" : { + "id" : -1020, + "item" : false + }, + "minecraft:chiseled_sandstone" : { + "id" : -944, + "item" : false + }, + "minecraft:chiseled_stone_bricks" : { + "id" : -870, + "item" : false + }, + "minecraft:chiseled_tuff" : { + "id" : -753, + "item" : false + }, + "minecraft:chiseled_tuff_bricks" : { + "id" : -759, + "item" : false + }, + "minecraft:chorus_flower" : { + "id" : 200, + "item" : false + }, + "minecraft:chorus_fruit" : { + "id" : 591, + "item" : true + }, + "minecraft:chorus_plant" : { + "id" : 240, + "item" : false + }, + "minecraft:clay" : { + "id" : 82, + "item" : false + }, + "minecraft:clay_ball" : { + "id" : 410, + "item" : true + }, + "minecraft:client_request_placeholder_block" : { + "id" : -465, + "item" : false + }, + "minecraft:clock" : { + "id" : 419, + "item" : true + }, + "minecraft:closed_eyeblossom" : { + "id" : -1019, + "item" : false + }, + "minecraft:coal" : { + "id" : 326, + "item" : true + }, + "minecraft:coal_block" : { + "id" : 173, + "item" : false + }, + "minecraft:coal_ore" : { + "id" : 16, + "item" : false + }, + "minecraft:coarse_dirt" : { + "id" : -962, + "item" : false + }, + "minecraft:coast_armor_trim_smithing_template" : { + "id" : 720, + "item" : true + }, + "minecraft:cobbled_deepslate" : { + "id" : -379, + "item" : false + }, + "minecraft:cobbled_deepslate_double_slab" : { + "id" : -396, + "item" : false + }, + "minecraft:cobbled_deepslate_slab" : { + "id" : -380, + "item" : false + }, + "minecraft:cobbled_deepslate_stairs" : { + "id" : -381, + "item" : false + }, + "minecraft:cobbled_deepslate_wall" : { + "id" : -382, + "item" : false + }, + "minecraft:cobblestone" : { + "id" : 4, + "item" : false + }, + "minecraft:cobblestone_double_slab" : { + "id" : -879, + "item" : false + }, + "minecraft:cobblestone_slab" : { + "id" : -873, + "item" : false + }, + "minecraft:cobblestone_wall" : { + "id" : 139, + "item" : false + }, + "minecraft:cocoa" : { + "id" : 127, + "item" : false + }, + "minecraft:cocoa_beans" : { + "id" : 438, + "item" : true + }, + "minecraft:cod" : { + "id" : 286, + "item" : true + }, + "minecraft:cod_bucket" : { + "id" : 389, + "item" : true + }, + "minecraft:cod_spawn_egg" : { + "id" : 508, + "item" : true + }, + "minecraft:colored_torch_blue" : { + "id" : 204, + "item" : false + }, + "minecraft:colored_torch_bp" : { + "id" : 789, + "item" : true + }, + "minecraft:colored_torch_green" : { + "id" : -963, + "item" : false + }, + "minecraft:colored_torch_purple" : { + "id" : -964, + "item" : false + }, + "minecraft:colored_torch_red" : { + "id" : 202, + "item" : false + }, + "minecraft:colored_torch_rg" : { + "id" : 788, + "item" : true + }, + "minecraft:command_block" : { + "id" : 137, + "item" : false + }, + "minecraft:command_block_minecart" : { + "id" : 596, + "item" : true + }, + "minecraft:comparator" : { + "id" : 555, + "item" : true + }, + "minecraft:compass" : { + "id" : 417, + "item" : true + }, + "minecraft:composter" : { + "id" : -213, + "item" : false + }, + "minecraft:compound" : { + "id" : 631, + "item" : true + }, + "minecraft:compound_creator" : { + "id" : 238, + "item" : false + }, + "minecraft:concrete" : { + "id" : 776, + "item" : true + }, + "minecraft:concrete_powder" : { + "id" : 777, + "item" : true + }, + "minecraft:conduit" : { + "id" : -157, + "item" : false + }, + "minecraft:cooked_beef" : { + "id" : 296, + "item" : true + }, + "minecraft:cooked_chicken" : { + "id" : 298, + "item" : true + }, + "minecraft:cooked_cod" : { + "id" : 290, + "item" : true + }, + "minecraft:cooked_mutton" : { + "id" : 584, + "item" : true + }, + "minecraft:cooked_porkchop" : { + "id" : 285, + "item" : true + }, + "minecraft:cooked_rabbit" : { + "id" : 311, + "item" : true + }, + "minecraft:cooked_salmon" : { + "id" : 291, + "item" : true + }, + "minecraft:cookie" : { + "id" : 293, + "item" : true + }, + "minecraft:copper_block" : { + "id" : -340, + "item" : false + }, + "minecraft:copper_bulb" : { + "id" : -776, + "item" : false + }, + "minecraft:copper_door" : { + "id" : -784, + "item" : true + }, + "minecraft:copper_grate" : { + "id" : -768, + "item" : false + }, + "minecraft:copper_ingot" : { + "id" : 538, + "item" : true + }, + "minecraft:copper_ore" : { + "id" : -311, + "item" : false + }, + "minecraft:copper_trapdoor" : { + "id" : -792, + "item" : false + }, + "minecraft:coral" : { + "id" : 772, + "item" : true + }, + "minecraft:coral_block" : { + "id" : 754, + "item" : true + }, + "minecraft:coral_fan" : { + "id" : 763, + "item" : true + }, + "minecraft:coral_fan_dead" : { + "id" : 764, + "item" : true + }, + "minecraft:cornflower" : { + "id" : -838, + "item" : false + }, + "minecraft:cow_spawn_egg" : { + "id" : 463, + "item" : true + }, + "minecraft:cracked_deepslate_bricks" : { + "id" : -410, + "item" : false + }, + "minecraft:cracked_deepslate_tiles" : { + "id" : -409, + "item" : false + }, + "minecraft:cracked_nether_bricks" : { + "id" : -303, + "item" : false + }, + "minecraft:cracked_polished_blackstone_bricks" : { + "id" : -280, + "item" : false + }, + "minecraft:cracked_stone_bricks" : { + "id" : -869, + "item" : false + }, + "minecraft:crafter" : { + "id" : -313, + "item" : false + }, + "minecraft:crafting_table" : { + "id" : 58, + "item" : false + }, + "minecraft:creaking_heart" : { + "id" : -1012, + "item" : false + }, + "minecraft:creaking_spawn_egg" : { + "id" : 747, + "item" : true + }, + "minecraft:creeper_banner_pattern" : { + "id" : 615, + "item" : true + }, + "minecraft:creeper_head" : { + "id" : -968, + "item" : false + }, + "minecraft:creeper_spawn_egg" : { + "id" : 468, + "item" : true + }, + "minecraft:crimson_button" : { + "id" : -260, + "item" : false + }, + "minecraft:crimson_door" : { + "id" : 653, + "item" : true + }, + "minecraft:crimson_double_slab" : { + "id" : -266, + "item" : false + }, + "minecraft:crimson_fence" : { + "id" : -256, + "item" : false + }, + "minecraft:crimson_fence_gate" : { + "id" : -258, + "item" : false + }, + "minecraft:crimson_fungus" : { + "id" : -228, + "item" : false + }, + "minecraft:crimson_hanging_sign" : { + "id" : -506, + "item" : true + }, + "minecraft:crimson_hyphae" : { + "id" : -299, + "item" : false + }, + "minecraft:crimson_nylium" : { + "id" : -232, + "item" : false + }, + "minecraft:crimson_planks" : { + "id" : -242, + "item" : false + }, + "minecraft:crimson_pressure_plate" : { + "id" : -262, + "item" : false + }, + "minecraft:crimson_roots" : { + "id" : -223, + "item" : false + }, + "minecraft:crimson_sign" : { + "id" : 651, + "item" : true + }, + "minecraft:crimson_slab" : { + "id" : -264, + "item" : false + }, + "minecraft:crimson_stairs" : { + "id" : -254, + "item" : false + }, + "minecraft:crimson_standing_sign" : { + "id" : -250, + "item" : false + }, + "minecraft:crimson_stem" : { + "id" : -225, + "item" : false + }, + "minecraft:crimson_trapdoor" : { + "id" : -246, + "item" : false + }, + "minecraft:crimson_wall_sign" : { + "id" : -252, + "item" : false + }, + "minecraft:crossbow" : { + "id" : 608, + "item" : true + }, + "minecraft:crying_obsidian" : { + "id" : -289, + "item" : false + }, + "minecraft:cut_copper" : { + "id" : -347, + "item" : false + }, + "minecraft:cut_copper_slab" : { + "id" : -361, + "item" : false + }, + "minecraft:cut_copper_stairs" : { + "id" : -354, + "item" : false + }, + "minecraft:cut_red_sandstone" : { + "id" : -957, + "item" : false + }, + "minecraft:cut_red_sandstone_double_slab" : { + "id" : -928, + "item" : false + }, + "minecraft:cut_red_sandstone_slab" : { + "id" : -901, + "item" : false + }, + "minecraft:cut_sandstone" : { + "id" : -945, + "item" : false + }, + "minecraft:cut_sandstone_double_slab" : { + "id" : -927, + "item" : false + }, + "minecraft:cut_sandstone_slab" : { + "id" : -900, + "item" : false + }, + "minecraft:cyan_bundle" : { + "id" : 267, + "item" : true + }, + "minecraft:cyan_candle" : { + "id" : -422, + "item" : false + }, + "minecraft:cyan_candle_cake" : { + "id" : -439, + "item" : false + }, + "minecraft:cyan_carpet" : { + "id" : -605, + "item" : false + }, + "minecraft:cyan_concrete" : { + "id" : -636, + "item" : false + }, + "minecraft:cyan_concrete_powder" : { + "id" : -717, + "item" : false + }, + "minecraft:cyan_dye" : { + "id" : 427, + "item" : true + }, + "minecraft:cyan_glazed_terracotta" : { + "id" : 229, + "item" : false + }, + "minecraft:cyan_shulker_box" : { + "id" : -621, + "item" : false + }, + "minecraft:cyan_stained_glass" : { + "id" : -681, + "item" : false + }, + "minecraft:cyan_stained_glass_pane" : { + "id" : -651, + "item" : false + }, + "minecraft:cyan_terracotta" : { + "id" : -732, + "item" : false + }, + "minecraft:cyan_wool" : { + "id" : -561, + "item" : false + }, + "minecraft:damaged_anvil" : { + "id" : -960, + "item" : false + }, + "minecraft:dandelion" : { + "id" : 37, + "item" : false + }, + "minecraft:danger_pottery_sherd" : { + "id" : 699, + "item" : true + }, + "minecraft:dark_oak_boat" : { + "id" : 406, + "item" : true + }, + "minecraft:dark_oak_button" : { + "id" : -142, + "item" : false + }, + "minecraft:dark_oak_chest_boat" : { + "id" : 680, + "item" : true + }, + "minecraft:dark_oak_door" : { + "id" : 590, + "item" : true + }, + "minecraft:dark_oak_double_slab" : { + "id" : -813, + "item" : false + }, + "minecraft:dark_oak_fence" : { + "id" : -577, + "item" : false + }, + "minecraft:dark_oak_fence_gate" : { + "id" : 186, + "item" : false + }, + "minecraft:dark_oak_hanging_sign" : { + "id" : -505, + "item" : true + }, + "minecraft:dark_oak_leaves" : { + "id" : -803, + "item" : false + }, + "minecraft:dark_oak_log" : { + "id" : -572, + "item" : false + }, + "minecraft:dark_oak_planks" : { + "id" : -743, + "item" : false + }, + "minecraft:dark_oak_pressure_plate" : { + "id" : -152, + "item" : false + }, + "minecraft:dark_oak_sapling" : { + "id" : -829, + "item" : false + }, + "minecraft:dark_oak_sign" : { + "id" : 613, + "item" : true + }, + "minecraft:dark_oak_slab" : { + "id" : -808, + "item" : false + }, + "minecraft:dark_oak_stairs" : { + "id" : 164, + "item" : false + }, + "minecraft:dark_oak_trapdoor" : { + "id" : -147, + "item" : false + }, + "minecraft:dark_oak_wood" : { + "id" : -818, + "item" : false + }, + "minecraft:dark_prismarine" : { + "id" : -947, + "item" : false + }, + "minecraft:dark_prismarine_double_slab" : { + "id" : -913, + "item" : false + }, + "minecraft:dark_prismarine_slab" : { + "id" : -886, + "item" : false + }, + "minecraft:dark_prismarine_stairs" : { + "id" : -3, + "item" : false + }, + "minecraft:darkoak_standing_sign" : { + "id" : -192, + "item" : false + }, + "minecraft:darkoak_wall_sign" : { + "id" : -193, + "item" : false + }, + "minecraft:daylight_detector" : { + "id" : 151, + "item" : false + }, + "minecraft:daylight_detector_inverted" : { + "id" : 178, + "item" : false + }, + "minecraft:dead_brain_coral" : { + "id" : -586, + "item" : false + }, + "minecraft:dead_brain_coral_block" : { + "id" : -854, + "item" : false + }, + "minecraft:dead_brain_coral_fan" : { + "id" : -844, + "item" : false + }, + "minecraft:dead_brain_coral_wall_fan" : { + "id" : -906, + "item" : false + }, + "minecraft:dead_bubble_coral" : { + "id" : -587, + "item" : false + }, + "minecraft:dead_bubble_coral_block" : { + "id" : -855, + "item" : false + }, + "minecraft:dead_bubble_coral_fan" : { + "id" : -845, + "item" : false + }, + "minecraft:dead_bubble_coral_wall_fan" : { + "id" : -908, + "item" : false + }, + "minecraft:dead_fire_coral" : { + "id" : -588, + "item" : false + }, + "minecraft:dead_fire_coral_block" : { + "id" : -856, + "item" : false + }, + "minecraft:dead_fire_coral_fan" : { + "id" : -846, + "item" : false + }, + "minecraft:dead_fire_coral_wall_fan" : { + "id" : -909, + "item" : false + }, + "minecraft:dead_horn_coral" : { + "id" : -589, + "item" : false + }, + "minecraft:dead_horn_coral_block" : { + "id" : -857, + "item" : false + }, + "minecraft:dead_horn_coral_fan" : { + "id" : -847, + "item" : false + }, + "minecraft:dead_horn_coral_wall_fan" : { + "id" : -910, + "item" : false + }, + "minecraft:dead_tube_coral" : { + "id" : -585, + "item" : false + }, + "minecraft:dead_tube_coral_block" : { + "id" : -853, + "item" : false + }, + "minecraft:dead_tube_coral_fan" : { + "id" : -134, + "item" : false + }, + "minecraft:dead_tube_coral_wall_fan" : { + "id" : -905, + "item" : false + }, + "minecraft:deadbush" : { + "id" : 32, + "item" : false + }, + "minecraft:decorated_pot" : { + "id" : -551, + "item" : false + }, + "minecraft:deepslate" : { + "id" : -378, + "item" : false + }, + "minecraft:deepslate_brick_double_slab" : { + "id" : -399, + "item" : false + }, + "minecraft:deepslate_brick_slab" : { + "id" : -392, + "item" : false + }, + "minecraft:deepslate_brick_stairs" : { + "id" : -393, + "item" : false + }, + "minecraft:deepslate_brick_wall" : { + "id" : -394, + "item" : false + }, + "minecraft:deepslate_bricks" : { + "id" : -391, + "item" : false + }, + "minecraft:deepslate_coal_ore" : { + "id" : -406, + "item" : false + }, + "minecraft:deepslate_copper_ore" : { + "id" : -408, + "item" : false + }, + "minecraft:deepslate_diamond_ore" : { + "id" : -405, + "item" : false + }, + "minecraft:deepslate_emerald_ore" : { + "id" : -407, + "item" : false + }, + "minecraft:deepslate_gold_ore" : { + "id" : -402, + "item" : false + }, + "minecraft:deepslate_iron_ore" : { + "id" : -401, + "item" : false + }, + "minecraft:deepslate_lapis_ore" : { + "id" : -400, + "item" : false + }, + "minecraft:deepslate_redstone_ore" : { + "id" : -403, + "item" : false + }, + "minecraft:deepslate_tile_double_slab" : { + "id" : -398, + "item" : false + }, + "minecraft:deepslate_tile_slab" : { + "id" : -388, + "item" : false + }, + "minecraft:deepslate_tile_stairs" : { + "id" : -389, + "item" : false + }, + "minecraft:deepslate_tile_wall" : { + "id" : -390, + "item" : false + }, + "minecraft:deepslate_tiles" : { + "id" : -387, + "item" : false + }, + "minecraft:deny" : { + "id" : 211, + "item" : false + }, + "minecraft:deprecated_anvil" : { + "id" : -961, + "item" : false + }, + "minecraft:deprecated_purpur_block_1" : { + "id" : -950, + "item" : false + }, + "minecraft:deprecated_purpur_block_2" : { + "id" : -952, + "item" : false + }, + "minecraft:detector_rail" : { + "id" : 28, + "item" : false + }, + "minecraft:diamond" : { + "id" : 328, + "item" : true + }, + "minecraft:diamond_axe" : { + "id" : 343, + "item" : true + }, + "minecraft:diamond_block" : { + "id" : 57, + "item" : false + }, + "minecraft:diamond_boots" : { + "id" : 375, + "item" : true + }, + "minecraft:diamond_chestplate" : { + "id" : 373, + "item" : true + }, + "minecraft:diamond_helmet" : { + "id" : 372, + "item" : true + }, + "minecraft:diamond_hoe" : { + "id" : 357, + "item" : true + }, + "minecraft:diamond_horse_armor" : { + "id" : 566, + "item" : true + }, + "minecraft:diamond_leggings" : { + "id" : 374, + "item" : true + }, + "minecraft:diamond_ore" : { + "id" : 56, + "item" : false + }, + "minecraft:diamond_pickaxe" : { + "id" : 342, + "item" : true + }, + "minecraft:diamond_shovel" : { + "id" : 341, + "item" : true + }, + "minecraft:diamond_sword" : { + "id" : 340, + "item" : true + }, + "minecraft:diorite" : { + "id" : -592, + "item" : false + }, + "minecraft:diorite_double_slab" : { + "id" : -921, + "item" : false + }, + "minecraft:diorite_slab" : { + "id" : -894, + "item" : false + }, + "minecraft:diorite_stairs" : { + "id" : -170, + "item" : false + }, + "minecraft:diorite_wall" : { + "id" : -973, + "item" : false + }, + "minecraft:dirt" : { + "id" : 3, + "item" : false + }, + "minecraft:dirt_with_roots" : { + "id" : -318, + "item" : false + }, + "minecraft:disc_fragment_5" : { + "id" : 674, + "item" : true + }, + "minecraft:dispenser" : { + "id" : 23, + "item" : false + }, + "minecraft:dolphin_spawn_egg" : { + "id" : 512, + "item" : true + }, + "minecraft:donkey_spawn_egg" : { + "id" : 493, + "item" : true + }, + "minecraft:double_cut_copper_slab" : { + "id" : -368, + "item" : false + }, + "minecraft:double_plant" : { + "id" : 770, + "item" : true + }, + "minecraft:double_stone_block_slab" : { + "id" : 759, + "item" : true + }, + "minecraft:double_stone_block_slab2" : { + "id" : 760, + "item" : true + }, + "minecraft:double_stone_block_slab3" : { + "id" : 761, + "item" : true + }, + "minecraft:double_stone_block_slab4" : { + "id" : 762, + "item" : true + }, + "minecraft:dragon_breath" : { + "id" : 593, + "item" : true + }, + "minecraft:dragon_egg" : { + "id" : 122, + "item" : false + }, + "minecraft:dragon_head" : { + "id" : -969, + "item" : false + }, + "minecraft:dried_kelp" : { + "id" : 292, + "item" : true + }, + "minecraft:dried_kelp_block" : { + "id" : -139, + "item" : false + }, + "minecraft:dripstone_block" : { + "id" : -317, + "item" : false + }, + "minecraft:dropper" : { + "id" : 125, + "item" : false + }, + "minecraft:drowned_spawn_egg" : { + "id" : 511, + "item" : true + }, + "minecraft:dune_armor_trim_smithing_template" : { + "id" : 719, + "item" : true + }, + "minecraft:dye" : { + "id" : 792, + "item" : true + }, + "minecraft:echo_shard" : { + "id" : 684, + "item" : true + }, + "minecraft:egg" : { + "id" : 416, + "item" : true + }, + "minecraft:elder_guardian_spawn_egg" : { + "id" : 499, + "item" : true + }, + "minecraft:element_0" : { + "id" : 36, + "item" : false + }, + "minecraft:element_1" : { + "id" : -12, + "item" : false + }, + "minecraft:element_10" : { + "id" : -21, + "item" : false + }, + "minecraft:element_100" : { + "id" : -111, + "item" : false + }, + "minecraft:element_101" : { + "id" : -112, + "item" : false + }, + "minecraft:element_102" : { + "id" : -113, + "item" : false + }, + "minecraft:element_103" : { + "id" : -114, + "item" : false + }, + "minecraft:element_104" : { + "id" : -115, + "item" : false + }, + "minecraft:element_105" : { + "id" : -116, + "item" : false + }, + "minecraft:element_106" : { + "id" : -117, + "item" : false + }, + "minecraft:element_107" : { + "id" : -118, + "item" : false + }, + "minecraft:element_108" : { + "id" : -119, + "item" : false + }, + "minecraft:element_109" : { + "id" : -120, + "item" : false + }, + "minecraft:element_11" : { + "id" : -22, + "item" : false + }, + "minecraft:element_110" : { + "id" : -121, + "item" : false + }, + "minecraft:element_111" : { + "id" : -122, + "item" : false + }, + "minecraft:element_112" : { + "id" : -123, + "item" : false + }, + "minecraft:element_113" : { + "id" : -124, + "item" : false + }, + "minecraft:element_114" : { + "id" : -125, + "item" : false + }, + "minecraft:element_115" : { + "id" : -126, + "item" : false + }, + "minecraft:element_116" : { + "id" : -127, + "item" : false + }, + "minecraft:element_117" : { + "id" : -128, + "item" : false + }, + "minecraft:element_118" : { + "id" : -129, + "item" : false + }, + "minecraft:element_12" : { + "id" : -23, + "item" : false + }, + "minecraft:element_13" : { + "id" : -24, + "item" : false + }, + "minecraft:element_14" : { + "id" : -25, + "item" : false + }, + "minecraft:element_15" : { + "id" : -26, + "item" : false + }, + "minecraft:element_16" : { + "id" : -27, + "item" : false + }, + "minecraft:element_17" : { + "id" : -28, + "item" : false + }, + "minecraft:element_18" : { + "id" : -29, + "item" : false + }, + "minecraft:element_19" : { + "id" : -30, + "item" : false + }, + "minecraft:element_2" : { + "id" : -13, + "item" : false + }, + "minecraft:element_20" : { + "id" : -31, + "item" : false + }, + "minecraft:element_21" : { + "id" : -32, + "item" : false + }, + "minecraft:element_22" : { + "id" : -33, + "item" : false + }, + "minecraft:element_23" : { + "id" : -34, + "item" : false + }, + "minecraft:element_24" : { + "id" : -35, + "item" : false + }, + "minecraft:element_25" : { + "id" : -36, + "item" : false + }, + "minecraft:element_26" : { + "id" : -37, + "item" : false + }, + "minecraft:element_27" : { + "id" : -38, + "item" : false + }, + "minecraft:element_28" : { + "id" : -39, + "item" : false + }, + "minecraft:element_29" : { + "id" : -40, + "item" : false + }, + "minecraft:element_3" : { + "id" : -14, + "item" : false + }, + "minecraft:element_30" : { + "id" : -41, + "item" : false + }, + "minecraft:element_31" : { + "id" : -42, + "item" : false + }, + "minecraft:element_32" : { + "id" : -43, + "item" : false + }, + "minecraft:element_33" : { + "id" : -44, + "item" : false + }, + "minecraft:element_34" : { + "id" : -45, + "item" : false + }, + "minecraft:element_35" : { + "id" : -46, + "item" : false + }, + "minecraft:element_36" : { + "id" : -47, + "item" : false + }, + "minecraft:element_37" : { + "id" : -48, + "item" : false + }, + "minecraft:element_38" : { + "id" : -49, + "item" : false + }, + "minecraft:element_39" : { + "id" : -50, + "item" : false + }, + "minecraft:element_4" : { + "id" : -15, + "item" : false + }, + "minecraft:element_40" : { + "id" : -51, + "item" : false + }, + "minecraft:element_41" : { + "id" : -52, + "item" : false + }, + "minecraft:element_42" : { + "id" : -53, + "item" : false + }, + "minecraft:element_43" : { + "id" : -54, + "item" : false + }, + "minecraft:element_44" : { + "id" : -55, + "item" : false + }, + "minecraft:element_45" : { + "id" : -56, + "item" : false + }, + "minecraft:element_46" : { + "id" : -57, + "item" : false + }, + "minecraft:element_47" : { + "id" : -58, + "item" : false + }, + "minecraft:element_48" : { + "id" : -59, + "item" : false + }, + "minecraft:element_49" : { + "id" : -60, + "item" : false + }, + "minecraft:element_5" : { + "id" : -16, + "item" : false + }, + "minecraft:element_50" : { + "id" : -61, + "item" : false + }, + "minecraft:element_51" : { + "id" : -62, + "item" : false + }, + "minecraft:element_52" : { + "id" : -63, + "item" : false + }, + "minecraft:element_53" : { + "id" : -64, + "item" : false + }, + "minecraft:element_54" : { + "id" : -65, + "item" : false + }, + "minecraft:element_55" : { + "id" : -66, + "item" : false + }, + "minecraft:element_56" : { + "id" : -67, + "item" : false + }, + "minecraft:element_57" : { + "id" : -68, + "item" : false + }, + "minecraft:element_58" : { + "id" : -69, + "item" : false + }, + "minecraft:element_59" : { + "id" : -70, + "item" : false + }, + "minecraft:element_6" : { + "id" : -17, + "item" : false + }, + "minecraft:element_60" : { + "id" : -71, + "item" : false + }, + "minecraft:element_61" : { + "id" : -72, + "item" : false + }, + "minecraft:element_62" : { + "id" : -73, + "item" : false + }, + "minecraft:element_63" : { + "id" : -74, + "item" : false + }, + "minecraft:element_64" : { + "id" : -75, + "item" : false + }, + "minecraft:element_65" : { + "id" : -76, + "item" : false + }, + "minecraft:element_66" : { + "id" : -77, + "item" : false + }, + "minecraft:element_67" : { + "id" : -78, + "item" : false + }, + "minecraft:element_68" : { + "id" : -79, + "item" : false + }, + "minecraft:element_69" : { + "id" : -80, + "item" : false + }, + "minecraft:element_7" : { + "id" : -18, + "item" : false + }, + "minecraft:element_70" : { + "id" : -81, + "item" : false + }, + "minecraft:element_71" : { + "id" : -82, + "item" : false + }, + "minecraft:element_72" : { + "id" : -83, + "item" : false + }, + "minecraft:element_73" : { + "id" : -84, + "item" : false + }, + "minecraft:element_74" : { + "id" : -85, + "item" : false + }, + "minecraft:element_75" : { + "id" : -86, + "item" : false + }, + "minecraft:element_76" : { + "id" : -87, + "item" : false + }, + "minecraft:element_77" : { + "id" : -88, + "item" : false + }, + "minecraft:element_78" : { + "id" : -89, + "item" : false + }, + "minecraft:element_79" : { + "id" : -90, + "item" : false + }, + "minecraft:element_8" : { + "id" : -19, + "item" : false + }, + "minecraft:element_80" : { + "id" : -91, + "item" : false + }, + "minecraft:element_81" : { + "id" : -92, + "item" : false + }, + "minecraft:element_82" : { + "id" : -93, + "item" : false + }, + "minecraft:element_83" : { + "id" : -94, + "item" : false + }, + "minecraft:element_84" : { + "id" : -95, + "item" : false + }, + "minecraft:element_85" : { + "id" : -96, + "item" : false + }, + "minecraft:element_86" : { + "id" : -97, + "item" : false + }, + "minecraft:element_87" : { + "id" : -98, + "item" : false + }, + "minecraft:element_88" : { + "id" : -99, + "item" : false + }, + "minecraft:element_89" : { + "id" : -100, + "item" : false + }, + "minecraft:element_9" : { + "id" : -20, + "item" : false + }, + "minecraft:element_90" : { + "id" : -101, + "item" : false + }, + "minecraft:element_91" : { + "id" : -102, + "item" : false + }, + "minecraft:element_92" : { + "id" : -103, + "item" : false + }, + "minecraft:element_93" : { + "id" : -104, + "item" : false + }, + "minecraft:element_94" : { + "id" : -105, + "item" : false + }, + "minecraft:element_95" : { + "id" : -106, + "item" : false + }, + "minecraft:element_96" : { + "id" : -107, + "item" : false + }, + "minecraft:element_97" : { + "id" : -108, + "item" : false + }, + "minecraft:element_98" : { + "id" : -109, + "item" : false + }, + "minecraft:element_99" : { + "id" : -110, + "item" : false + }, + "minecraft:element_constructor" : { + "id" : -987, + "item" : false + }, + "minecraft:elytra" : { + "id" : 597, + "item" : true + }, + "minecraft:emerald" : { + "id" : 546, + "item" : true + }, + "minecraft:emerald_block" : { + "id" : 133, + "item" : false + }, + "minecraft:emerald_ore" : { + "id" : 129, + "item" : false + }, + "minecraft:empty_map" : { + "id" : 549, + "item" : true + }, + "minecraft:enchanted_book" : { + "id" : 554, + "item" : true + }, + "minecraft:enchanted_golden_apple" : { + "id" : 281, + "item" : true + }, + "minecraft:enchanting_table" : { + "id" : 116, + "item" : false + }, + "minecraft:end_brick_stairs" : { + "id" : -178, + "item" : false + }, + "minecraft:end_bricks" : { + "id" : 206, + "item" : false + }, + "minecraft:end_crystal" : { + "id" : 795, + "item" : true + }, + "minecraft:end_gateway" : { + "id" : 209, + "item" : false + }, + "minecraft:end_portal" : { + "id" : 119, + "item" : false + }, + "minecraft:end_portal_frame" : { + "id" : 120, + "item" : false + }, + "minecraft:end_rod" : { + "id" : 208, + "item" : false + }, + "minecraft:end_stone" : { + "id" : 121, + "item" : false + }, + "minecraft:end_stone_brick_double_slab" : { + "id" : -167, + "item" : false + }, + "minecraft:end_stone_brick_slab" : { + "id" : -162, + "item" : false + }, + "minecraft:end_stone_brick_wall" : { + "id" : -980, + "item" : false + }, + "minecraft:ender_chest" : { + "id" : 130, + "item" : false + }, + "minecraft:ender_dragon_spawn_egg" : { + "id" : 535, + "item" : true + }, + "minecraft:ender_eye" : { + "id" : 460, + "item" : true + }, + "minecraft:ender_pearl" : { + "id" : 448, + "item" : true + }, + "minecraft:enderman_spawn_egg" : { + "id" : 469, + "item" : true + }, + "minecraft:endermite_spawn_egg" : { + "id" : 487, + "item" : true + }, + "minecraft:evoker_spawn_egg" : { + "id" : 503, + "item" : true + }, + "minecraft:experience_bottle" : { + "id" : 542, + "item" : true + }, + "minecraft:explorer_pottery_sherd" : { + "id" : 700, + "item" : true + }, + "minecraft:exposed_chiseled_copper" : { + "id" : -761, + "item" : false + }, + "minecraft:exposed_copper" : { + "id" : -341, + "item" : false + }, + "minecraft:exposed_copper_bulb" : { + "id" : -777, + "item" : false + }, + "minecraft:exposed_copper_door" : { + "id" : -785, + "item" : true + }, + "minecraft:exposed_copper_grate" : { + "id" : -769, + "item" : false + }, + "minecraft:exposed_copper_trapdoor" : { + "id" : -793, + "item" : false + }, + "minecraft:exposed_cut_copper" : { + "id" : -348, + "item" : false + }, + "minecraft:exposed_cut_copper_slab" : { + "id" : -362, + "item" : false + }, + "minecraft:exposed_cut_copper_stairs" : { + "id" : -355, + "item" : false + }, + "minecraft:exposed_double_cut_copper_slab" : { + "id" : -369, + "item" : false + }, + "minecraft:eye_armor_trim_smithing_template" : { + "id" : 723, + "item" : true + }, + "minecraft:farmland" : { + "id" : 60, + "item" : false + }, + "minecraft:feather" : { + "id" : 352, + "item" : true + }, + "minecraft:fence" : { + "id" : 752, + "item" : true + }, + "minecraft:fence_gate" : { + "id" : 107, + "item" : false + }, + "minecraft:fermented_spider_eye" : { + "id" : 455, + "item" : true + }, + "minecraft:fern" : { + "id" : -848, + "item" : false + }, + "minecraft:field_masoned_banner_pattern" : { + "id" : 618, + "item" : true + }, + "minecraft:filled_map" : { + "id" : 446, + "item" : true + }, + "minecraft:fire" : { + "id" : 51, + "item" : false + }, + "minecraft:fire_charge" : { + "id" : 543, + "item" : true + }, + "minecraft:fire_coral" : { + "id" : -583, + "item" : false + }, + "minecraft:fire_coral_block" : { + "id" : -851, + "item" : false + }, + "minecraft:fire_coral_fan" : { + "id" : -842, + "item" : false + }, + "minecraft:fire_coral_wall_fan" : { + "id" : -907, + "item" : false + }, + "minecraft:firework_rocket" : { + "id" : 552, + "item" : true + }, + "minecraft:firework_star" : { + "id" : 553, + "item" : true + }, + "minecraft:fishing_rod" : { + "id" : 418, + "item" : true + }, + "minecraft:fletching_table" : { + "id" : -201, + "item" : false + }, + "minecraft:flint" : { + "id" : 381, + "item" : true + }, + "minecraft:flint_and_steel" : { + "id" : 323, + "item" : true + }, + "minecraft:flow_armor_trim_smithing_template" : { + "id" : 734, + "item" : true + }, + "minecraft:flow_banner_pattern" : { + "id" : 622, + "item" : true + }, + "minecraft:flow_pottery_sherd" : { + "id" : 701, + "item" : true + }, + "minecraft:flower_banner_pattern" : { + "id" : 614, + "item" : true + }, + "minecraft:flower_pot" : { + "id" : 548, + "item" : true + }, + "minecraft:flowering_azalea" : { + "id" : -338, + "item" : false + }, + "minecraft:flowing_lava" : { + "id" : 10, + "item" : false + }, + "minecraft:flowing_water" : { + "id" : 8, + "item" : false + }, + "minecraft:fox_spawn_egg" : { + "id" : 518, + "item" : true + }, + "minecraft:frame" : { + "id" : 547, + "item" : true + }, + "minecraft:friend_pottery_sherd" : { + "id" : 702, + "item" : true + }, + "minecraft:frog_spawn" : { + "id" : -468, + "item" : false + }, + "minecraft:frog_spawn_egg" : { + "id" : 665, + "item" : true + }, + "minecraft:frosted_ice" : { + "id" : 207, + "item" : false + }, + "minecraft:furnace" : { + "id" : 61, + "item" : false + }, + "minecraft:ghast_spawn_egg" : { + "id" : 481, + "item" : true + }, + "minecraft:ghast_tear" : { + "id" : 451, + "item" : true + }, + "minecraft:gilded_blackstone" : { + "id" : -281, + "item" : false + }, + "minecraft:glass" : { + "id" : 20, + "item" : false + }, + "minecraft:glass_bottle" : { + "id" : 454, + "item" : true + }, + "minecraft:glass_pane" : { + "id" : 102, + "item" : false + }, + "minecraft:glistering_melon_slice" : { + "id" : 461, + "item" : true + }, + "minecraft:globe_banner_pattern" : { + "id" : 621, + "item" : true + }, + "minecraft:glow_berries" : { + "id" : 796, + "item" : true + }, + "minecraft:glow_frame" : { + "id" : 660, + "item" : true + }, + "minecraft:glow_ink_sac" : { + "id" : 537, + "item" : true + }, + "minecraft:glow_lichen" : { + "id" : -411, + "item" : false + }, + "minecraft:glow_squid_spawn_egg" : { + "id" : 532, + "item" : true + }, + "minecraft:glow_stick" : { + "id" : 638, + "item" : true + }, + "minecraft:glowingobsidian" : { + "id" : 246, + "item" : false + }, + "minecraft:glowstone" : { + "id" : 89, + "item" : false + }, + "minecraft:glowstone_dust" : { + "id" : 420, + "item" : true + }, + "minecraft:goat_horn" : { + "id" : 664, + "item" : true + }, + "minecraft:goat_spawn_egg" : { + "id" : 531, + "item" : true + }, + "minecraft:gold_block" : { + "id" : 41, + "item" : false + }, + "minecraft:gold_ingot" : { + "id" : 330, + "item" : true + }, + "minecraft:gold_nugget" : { + "id" : 452, + "item" : true + }, + "minecraft:gold_ore" : { + "id" : 14, + "item" : false + }, + "minecraft:golden_apple" : { + "id" : 280, + "item" : true + }, + "minecraft:golden_axe" : { + "id" : 350, + "item" : true + }, + "minecraft:golden_boots" : { + "id" : 379, + "item" : true + }, + "minecraft:golden_carrot" : { + "id" : 305, + "item" : true + }, + "minecraft:golden_chestplate" : { + "id" : 377, + "item" : true + }, + "minecraft:golden_helmet" : { + "id" : 376, + "item" : true + }, + "minecraft:golden_hoe" : { + "id" : 358, + "item" : true + }, + "minecraft:golden_horse_armor" : { + "id" : 565, + "item" : true + }, + "minecraft:golden_leggings" : { + "id" : 378, + "item" : true + }, + "minecraft:golden_pickaxe" : { + "id" : 349, + "item" : true + }, + "minecraft:golden_rail" : { + "id" : 27, + "item" : false + }, + "minecraft:golden_shovel" : { + "id" : 348, + "item" : true + }, + "minecraft:golden_sword" : { + "id" : 347, + "item" : true + }, + "minecraft:granite" : { + "id" : -590, + "item" : false + }, + "minecraft:granite_double_slab" : { + "id" : -923, + "item" : false + }, + "minecraft:granite_slab" : { + "id" : -896, + "item" : false + }, + "minecraft:granite_stairs" : { + "id" : -169, + "item" : false + }, + "minecraft:granite_wall" : { + "id" : -972, + "item" : false + }, + "minecraft:grass_block" : { + "id" : 2, + "item" : false + }, + "minecraft:grass_path" : { + "id" : 198, + "item" : false + }, + "minecraft:gravel" : { + "id" : 13, + "item" : false + }, + "minecraft:gray_bundle" : { + "id" : 268, + "item" : true + }, + "minecraft:gray_candle" : { + "id" : -420, + "item" : false + }, + "minecraft:gray_candle_cake" : { + "id" : -437, + "item" : false + }, + "minecraft:gray_carpet" : { + "id" : -603, + "item" : false + }, + "minecraft:gray_concrete" : { + "id" : -634, + "item" : false + }, + "minecraft:gray_concrete_powder" : { + "id" : -715, + "item" : false + }, + "minecraft:gray_dye" : { + "id" : 429, + "item" : true + }, + "minecraft:gray_glazed_terracotta" : { + "id" : 227, + "item" : false + }, + "minecraft:gray_shulker_box" : { + "id" : -619, + "item" : false + }, + "minecraft:gray_stained_glass" : { + "id" : -679, + "item" : false + }, + "minecraft:gray_stained_glass_pane" : { + "id" : -649, + "item" : false + }, + "minecraft:gray_terracotta" : { + "id" : -730, + "item" : false + }, + "minecraft:gray_wool" : { + "id" : -553, + "item" : false + }, + "minecraft:green_bundle" : { + "id" : 270, + "item" : true + }, + "minecraft:green_candle" : { + "id" : -426, + "item" : false + }, + "minecraft:green_candle_cake" : { + "id" : -443, + "item" : false + }, + "minecraft:green_carpet" : { + "id" : -609, + "item" : false + }, + "minecraft:green_concrete" : { + "id" : -640, + "item" : false + }, + "minecraft:green_concrete_powder" : { + "id" : -721, + "item" : false + }, + "minecraft:green_dye" : { + "id" : 423, + "item" : true + }, + "minecraft:green_glazed_terracotta" : { + "id" : 233, + "item" : false + }, + "minecraft:green_shulker_box" : { + "id" : -625, + "item" : false + }, + "minecraft:green_stained_glass" : { + "id" : -685, + "item" : false + }, + "minecraft:green_stained_glass_pane" : { + "id" : -655, + "item" : false + }, + "minecraft:green_terracotta" : { + "id" : -736, + "item" : false + }, + "minecraft:green_wool" : { + "id" : -560, + "item" : false + }, + "minecraft:grindstone" : { + "id" : -195, + "item" : false + }, + "minecraft:guardian_spawn_egg" : { + "id" : 488, + "item" : true + }, + "minecraft:gunpowder" : { + "id" : 353, + "item" : true + }, + "minecraft:guster_banner_pattern" : { + "id" : 623, + "item" : true + }, + "minecraft:guster_pottery_sherd" : { + "id" : 703, + "item" : true + }, + "minecraft:hanging_roots" : { + "id" : -319, + "item" : false + }, + "minecraft:hard_black_stained_glass" : { + "id" : -702, + "item" : false + }, + "minecraft:hard_black_stained_glass_pane" : { + "id" : -672, + "item" : false + }, + "minecraft:hard_blue_stained_glass" : { + "id" : -698, + "item" : false + }, + "minecraft:hard_blue_stained_glass_pane" : { + "id" : -668, + "item" : false + }, + "minecraft:hard_brown_stained_glass" : { + "id" : -699, + "item" : false + }, + "minecraft:hard_brown_stained_glass_pane" : { + "id" : -669, + "item" : false + }, + "minecraft:hard_cyan_stained_glass" : { + "id" : -696, + "item" : false + }, + "minecraft:hard_cyan_stained_glass_pane" : { + "id" : -666, + "item" : false + }, + "minecraft:hard_glass" : { + "id" : 253, + "item" : false + }, + "minecraft:hard_glass_pane" : { + "id" : 190, + "item" : false + }, + "minecraft:hard_gray_stained_glass" : { + "id" : -694, + "item" : false + }, + "minecraft:hard_gray_stained_glass_pane" : { + "id" : -664, + "item" : false + }, + "minecraft:hard_green_stained_glass" : { + "id" : -700, + "item" : false + }, + "minecraft:hard_green_stained_glass_pane" : { + "id" : -670, + "item" : false + }, + "minecraft:hard_light_blue_stained_glass" : { + "id" : -690, + "item" : false + }, + "minecraft:hard_light_blue_stained_glass_pane" : { + "id" : -660, + "item" : false + }, + "minecraft:hard_light_gray_stained_glass" : { + "id" : -695, + "item" : false + }, + "minecraft:hard_light_gray_stained_glass_pane" : { + "id" : -665, + "item" : false + }, + "minecraft:hard_lime_stained_glass" : { + "id" : -692, + "item" : false + }, + "minecraft:hard_lime_stained_glass_pane" : { + "id" : -662, + "item" : false + }, + "minecraft:hard_magenta_stained_glass" : { + "id" : -689, + "item" : false + }, + "minecraft:hard_magenta_stained_glass_pane" : { + "id" : -659, + "item" : false + }, + "minecraft:hard_orange_stained_glass" : { + "id" : -688, + "item" : false + }, + "minecraft:hard_orange_stained_glass_pane" : { + "id" : -658, + "item" : false + }, + "minecraft:hard_pink_stained_glass" : { + "id" : -693, + "item" : false + }, + "minecraft:hard_pink_stained_glass_pane" : { + "id" : -663, + "item" : false + }, + "minecraft:hard_purple_stained_glass" : { + "id" : -697, + "item" : false + }, + "minecraft:hard_purple_stained_glass_pane" : { + "id" : -667, + "item" : false + }, + "minecraft:hard_red_stained_glass" : { + "id" : -701, + "item" : false + }, + "minecraft:hard_red_stained_glass_pane" : { + "id" : -671, + "item" : false + }, + "minecraft:hard_stained_glass" : { + "id" : 786, + "item" : true + }, + "minecraft:hard_stained_glass_pane" : { + "id" : 787, + "item" : true + }, + "minecraft:hard_white_stained_glass" : { + "id" : 254, + "item" : false + }, + "minecraft:hard_white_stained_glass_pane" : { + "id" : 191, + "item" : false + }, + "minecraft:hard_yellow_stained_glass" : { + "id" : -691, + "item" : false + }, + "minecraft:hard_yellow_stained_glass_pane" : { + "id" : -661, + "item" : false + }, + "minecraft:hardened_clay" : { + "id" : 172, + "item" : false + }, + "minecraft:hay_block" : { + "id" : 170, + "item" : false + }, + "minecraft:heart_of_the_sea" : { + "id" : 604, + "item" : true + }, + "minecraft:heart_pottery_sherd" : { + "id" : 704, + "item" : true + }, + "minecraft:heartbreak_pottery_sherd" : { + "id" : 705, + "item" : true + }, + "minecraft:heavy_core" : { + "id" : -316, + "item" : false + }, + "minecraft:heavy_weighted_pressure_plate" : { + "id" : 148, + "item" : false + }, + "minecraft:hoglin_spawn_egg" : { + "id" : 524, + "item" : true + }, + "minecraft:honey_block" : { + "id" : -220, + "item" : false + }, + "minecraft:honey_bottle" : { + "id" : 627, + "item" : true + }, + "minecraft:honeycomb" : { + "id" : 626, + "item" : true + }, + "minecraft:honeycomb_block" : { + "id" : -221, + "item" : false + }, + "minecraft:hopper" : { + "id" : 560, + "item" : true + }, + "minecraft:hopper_minecart" : { + "id" : 559, + "item" : true + }, + "minecraft:horn_coral" : { + "id" : -584, + "item" : false + }, + "minecraft:horn_coral_block" : { + "id" : -852, + "item" : false + }, + "minecraft:horn_coral_fan" : { + "id" : -843, + "item" : false + }, + "minecraft:horn_coral_wall_fan" : { + "id" : -137, + "item" : false + }, + "minecraft:horse_spawn_egg" : { + "id" : 485, + "item" : true + }, + "minecraft:host_armor_trim_smithing_template" : { + "id" : 733, + "item" : true + }, + "minecraft:howl_pottery_sherd" : { + "id" : 706, + "item" : true + }, + "minecraft:husk_spawn_egg" : { + "id" : 491, + "item" : true + }, + "minecraft:ice" : { + "id" : 79, + "item" : false + }, + "minecraft:ice_bomb" : { + "id" : 632, + "item" : true + }, + "minecraft:infested_chiseled_stone_bricks" : { + "id" : -862, + "item" : false + }, + "minecraft:infested_cobblestone" : { + "id" : -858, + "item" : false + }, + "minecraft:infested_cracked_stone_bricks" : { + "id" : -861, + "item" : false + }, + "minecraft:infested_deepslate" : { + "id" : -454, + "item" : false + }, + "minecraft:infested_mossy_stone_bricks" : { + "id" : -860, + "item" : false + }, + "minecraft:infested_stone" : { + "id" : 97, + "item" : false + }, + "minecraft:infested_stone_bricks" : { + "id" : -859, + "item" : false + }, + "minecraft:info_update" : { + "id" : 248, + "item" : false + }, + "minecraft:info_update2" : { + "id" : 249, + "item" : false + }, + "minecraft:ink_sac" : { + "id" : 439, + "item" : true + }, + "minecraft:invisible_bedrock" : { + "id" : 95, + "item" : false + }, + "minecraft:iron_axe" : { + "id" : 322, + "item" : true + }, + "minecraft:iron_bars" : { + "id" : 101, + "item" : false + }, + "minecraft:iron_block" : { + "id" : 42, + "item" : false + }, + "minecraft:iron_boots" : { + "id" : 371, + "item" : true + }, + "minecraft:iron_chestplate" : { + "id" : 369, + "item" : true + }, + "minecraft:iron_door" : { + "id" : 397, + "item" : true + }, + "minecraft:iron_golem_spawn_egg" : { + "id" : 533, + "item" : true + }, + "minecraft:iron_helmet" : { + "id" : 368, + "item" : true + }, + "minecraft:iron_hoe" : { + "id" : 356, + "item" : true + }, + "minecraft:iron_horse_armor" : { + "id" : 564, + "item" : true + }, + "minecraft:iron_ingot" : { + "id" : 329, + "item" : true + }, + "minecraft:iron_leggings" : { + "id" : 370, + "item" : true + }, + "minecraft:iron_nugget" : { + "id" : 602, + "item" : true + }, + "minecraft:iron_ore" : { + "id" : 15, + "item" : false + }, + "minecraft:iron_pickaxe" : { + "id" : 321, + "item" : true + }, + "minecraft:iron_shovel" : { + "id" : 320, + "item" : true + }, + "minecraft:iron_sword" : { + "id" : 331, + "item" : true + }, + "minecraft:iron_trapdoor" : { + "id" : 167, + "item" : false + }, + "minecraft:item.acacia_door" : { + "id" : 196, + "item" : false + }, + "minecraft:item.bed" : { + "id" : 26, + "item" : false + }, + "minecraft:item.beetroot" : { + "id" : 244, + "item" : false + }, + "minecraft:item.birch_door" : { + "id" : 194, + "item" : false + }, + "minecraft:item.brewing_stand" : { + "id" : 117, + "item" : false + }, + "minecraft:item.cake" : { + "id" : 92, + "item" : false + }, + "minecraft:item.camera" : { + "id" : 242, + "item" : false + }, + "minecraft:item.campfire" : { + "id" : -209, + "item" : false + }, + "minecraft:item.cauldron" : { + "id" : 118, + "item" : false + }, + "minecraft:item.chain" : { + "id" : -286, + "item" : false + }, + "minecraft:item.crimson_door" : { + "id" : -244, + "item" : false + }, + "minecraft:item.dark_oak_door" : { + "id" : 197, + "item" : false + }, + "minecraft:item.flower_pot" : { + "id" : 140, + "item" : false + }, + "minecraft:item.frame" : { + "id" : 199, + "item" : false + }, + "minecraft:item.glow_frame" : { + "id" : -339, + "item" : false + }, + "minecraft:item.hopper" : { + "id" : 154, + "item" : false + }, + "minecraft:item.iron_door" : { + "id" : 71, + "item" : false + }, + "minecraft:item.jungle_door" : { + "id" : 195, + "item" : false + }, + "minecraft:item.kelp" : { + "id" : -138, + "item" : false + }, + "minecraft:item.mangrove_door" : { + "id" : -493, + "item" : false + }, + "minecraft:item.nether_sprouts" : { + "id" : -238, + "item" : false + }, + "minecraft:item.nether_wart" : { + "id" : 115, + "item" : false + }, + "minecraft:item.reeds" : { + "id" : 83, + "item" : false + }, + "minecraft:item.soul_campfire" : { + "id" : -290, + "item" : false + }, + "minecraft:item.spruce_door" : { + "id" : 193, + "item" : false + }, + "minecraft:item.warped_door" : { + "id" : -245, + "item" : false + }, + "minecraft:item.wheat" : { + "id" : 59, + "item" : false + }, + "minecraft:item.wooden_door" : { + "id" : 64, + "item" : false + }, + "minecraft:jigsaw" : { + "id" : -211, + "item" : false + }, + "minecraft:jukebox" : { + "id" : 84, + "item" : false + }, + "minecraft:jungle_boat" : { + "id" : 403, + "item" : true + }, + "minecraft:jungle_button" : { + "id" : -143, + "item" : false + }, + "minecraft:jungle_chest_boat" : { + "id" : 677, + "item" : true + }, + "minecraft:jungle_door" : { + "id" : 588, + "item" : true + }, + "minecraft:jungle_double_slab" : { + "id" : -811, + "item" : false + }, + "minecraft:jungle_fence" : { + "id" : -578, + "item" : false + }, + "minecraft:jungle_fence_gate" : { + "id" : 185, + "item" : false + }, + "minecraft:jungle_hanging_sign" : { + "id" : -503, + "item" : true + }, + "minecraft:jungle_leaves" : { + "id" : -802, + "item" : false + }, + "minecraft:jungle_log" : { + "id" : -571, + "item" : false + }, + "minecraft:jungle_planks" : { + "id" : -741, + "item" : false + }, + "minecraft:jungle_pressure_plate" : { + "id" : -153, + "item" : false + }, + "minecraft:jungle_sapling" : { + "id" : -827, + "item" : false + }, + "minecraft:jungle_sign" : { + "id" : 611, + "item" : true + }, + "minecraft:jungle_slab" : { + "id" : -806, + "item" : false + }, + "minecraft:jungle_stairs" : { + "id" : 136, + "item" : false + }, + "minecraft:jungle_standing_sign" : { + "id" : -188, + "item" : false + }, + "minecraft:jungle_trapdoor" : { + "id" : -148, + "item" : false + }, + "minecraft:jungle_wall_sign" : { + "id" : -189, + "item" : false + }, + "minecraft:jungle_wood" : { + "id" : -816, + "item" : false + }, + "minecraft:kelp" : { + "id" : 408, + "item" : true + }, + "minecraft:lab_table" : { + "id" : -988, + "item" : false + }, + "minecraft:ladder" : { + "id" : 65, + "item" : false + }, + "minecraft:lantern" : { + "id" : -208, + "item" : false + }, + "minecraft:lapis_block" : { + "id" : 22, + "item" : false + }, + "minecraft:lapis_lazuli" : { + "id" : 440, + "item" : true + }, + "minecraft:lapis_ore" : { + "id" : 21, + "item" : false + }, + "minecraft:large_amethyst_bud" : { + "id" : -330, + "item" : false + }, + "minecraft:large_fern" : { + "id" : -865, + "item" : false + }, + "minecraft:lava" : { + "id" : 11, + "item" : false + }, + "minecraft:lava_bucket" : { + "id" : 388, + "item" : true + }, + "minecraft:lead" : { + "id" : 580, + "item" : true + }, + "minecraft:leather" : { + "id" : 407, + "item" : true + }, + "minecraft:leather_boots" : { + "id" : 363, + "item" : true + }, + "minecraft:leather_chestplate" : { + "id" : 361, + "item" : true + }, + "minecraft:leather_helmet" : { + "id" : 360, + "item" : true + }, + "minecraft:leather_horse_armor" : { + "id" : 563, + "item" : true + }, + "minecraft:leather_leggings" : { + "id" : 362, + "item" : true + }, + "minecraft:leaves" : { + "id" : 766, + "item" : true + }, + "minecraft:leaves2" : { + "id" : 767, + "item" : true + }, + "minecraft:lectern" : { + "id" : -194, + "item" : false + }, + "minecraft:lever" : { + "id" : 69, + "item" : false + }, + "minecraft:light_block" : { + "id" : 790, + "item" : true + }, + "minecraft:light_block_0" : { + "id" : -215, + "item" : false + }, + "minecraft:light_block_1" : { + "id" : -929, + "item" : false + }, + "minecraft:light_block_10" : { + "id" : -938, + "item" : false + }, + "minecraft:light_block_11" : { + "id" : -939, + "item" : false + }, + "minecraft:light_block_12" : { + "id" : -940, + "item" : false + }, + "minecraft:light_block_13" : { + "id" : -941, + "item" : false + }, + "minecraft:light_block_14" : { + "id" : -942, + "item" : false + }, + "minecraft:light_block_15" : { + "id" : -943, + "item" : false + }, + "minecraft:light_block_2" : { + "id" : -930, + "item" : false + }, + "minecraft:light_block_3" : { + "id" : -931, + "item" : false + }, + "minecraft:light_block_4" : { + "id" : -932, + "item" : false + }, + "minecraft:light_block_5" : { + "id" : -933, + "item" : false + }, + "minecraft:light_block_6" : { + "id" : -934, + "item" : false + }, + "minecraft:light_block_7" : { + "id" : -935, + "item" : false + }, + "minecraft:light_block_8" : { + "id" : -936, + "item" : false + }, + "minecraft:light_block_9" : { + "id" : -937, + "item" : false + }, + "minecraft:light_blue_bundle" : { + "id" : 264, + "item" : true + }, + "minecraft:light_blue_candle" : { + "id" : -416, + "item" : false + }, + "minecraft:light_blue_candle_cake" : { + "id" : -433, + "item" : false + }, + "minecraft:light_blue_carpet" : { + "id" : -599, + "item" : false + }, + "minecraft:light_blue_concrete" : { + "id" : -630, + "item" : false + }, + "minecraft:light_blue_concrete_powder" : { + "id" : -711, + "item" : false + }, + "minecraft:light_blue_dye" : { + "id" : 433, + "item" : true + }, + "minecraft:light_blue_glazed_terracotta" : { + "id" : 223, + "item" : false + }, + "minecraft:light_blue_shulker_box" : { + "id" : -615, + "item" : false + }, + "minecraft:light_blue_stained_glass" : { + "id" : -675, + "item" : false + }, + "minecraft:light_blue_stained_glass_pane" : { + "id" : -645, + "item" : false + }, + "minecraft:light_blue_terracotta" : { + "id" : -726, + "item" : false + }, + "minecraft:light_blue_wool" : { + "id" : -562, + "item" : false + }, + "minecraft:light_gray_bundle" : { + "id" : 271, + "item" : true + }, + "minecraft:light_gray_candle" : { + "id" : -421, + "item" : false + }, + "minecraft:light_gray_candle_cake" : { + "id" : -438, + "item" : false + }, + "minecraft:light_gray_carpet" : { + "id" : -604, + "item" : false + }, + "minecraft:light_gray_concrete" : { + "id" : -635, + "item" : false + }, + "minecraft:light_gray_concrete_powder" : { + "id" : -716, + "item" : false + }, + "minecraft:light_gray_dye" : { + "id" : 428, + "item" : true + }, + "minecraft:light_gray_shulker_box" : { + "id" : -620, + "item" : false + }, + "minecraft:light_gray_stained_glass" : { + "id" : -680, + "item" : false + }, + "minecraft:light_gray_stained_glass_pane" : { + "id" : -650, + "item" : false + }, + "minecraft:light_gray_terracotta" : { + "id" : -731, + "item" : false + }, + "minecraft:light_gray_wool" : { + "id" : -552, + "item" : false + }, + "minecraft:light_weighted_pressure_plate" : { + "id" : 147, + "item" : false + }, + "minecraft:lightning_rod" : { + "id" : -312, + "item" : false + }, + "minecraft:lilac" : { + "id" : -863, + "item" : false + }, + "minecraft:lily_of_the_valley" : { + "id" : -839, + "item" : false + }, + "minecraft:lime_bundle" : { + "id" : 260, + "item" : true + }, + "minecraft:lime_candle" : { + "id" : -418, + "item" : false + }, + "minecraft:lime_candle_cake" : { + "id" : -435, + "item" : false + }, + "minecraft:lime_carpet" : { + "id" : -601, + "item" : false + }, + "minecraft:lime_concrete" : { + "id" : -632, + "item" : false + }, + "minecraft:lime_concrete_powder" : { + "id" : -713, + "item" : false + }, + "minecraft:lime_dye" : { + "id" : 431, + "item" : true + }, + "minecraft:lime_glazed_terracotta" : { + "id" : 225, + "item" : false + }, + "minecraft:lime_shulker_box" : { + "id" : -617, + "item" : false + }, + "minecraft:lime_stained_glass" : { + "id" : -677, + "item" : false + }, + "minecraft:lime_stained_glass_pane" : { + "id" : -647, + "item" : false + }, + "minecraft:lime_terracotta" : { + "id" : -728, + "item" : false + }, + "minecraft:lime_wool" : { + "id" : -559, + "item" : false + }, + "minecraft:lingering_potion" : { + "id" : 595, + "item" : true + }, + "minecraft:lit_blast_furnace" : { + "id" : -214, + "item" : false + }, + "minecraft:lit_deepslate_redstone_ore" : { + "id" : -404, + "item" : false + }, + "minecraft:lit_furnace" : { + "id" : 62, + "item" : false + }, + "minecraft:lit_pumpkin" : { + "id" : 91, + "item" : false + }, + "minecraft:lit_redstone_lamp" : { + "id" : 124, + "item" : false + }, + "minecraft:lit_redstone_ore" : { + "id" : 74, + "item" : false + }, + "minecraft:lit_smoker" : { + "id" : -199, + "item" : false + }, + "minecraft:llama_spawn_egg" : { + "id" : 501, + "item" : true + }, + "minecraft:lodestone" : { + "id" : -222, + "item" : false + }, + "minecraft:lodestone_compass" : { + "id" : 639, + "item" : true + }, + "minecraft:log" : { + "id" : 751, + "item" : true + }, + "minecraft:log2" : { + "id" : 774, + "item" : true + }, + "minecraft:loom" : { + "id" : -204, + "item" : false + }, + "minecraft:mace" : { + "id" : 344, + "item" : true + }, + "minecraft:magenta_bundle" : { + "id" : 258, + "item" : true + }, + "minecraft:magenta_candle" : { + "id" : -415, + "item" : false + }, + "minecraft:magenta_candle_cake" : { + "id" : -432, + "item" : false + }, + "minecraft:magenta_carpet" : { + "id" : -598, + "item" : false + }, + "minecraft:magenta_concrete" : { + "id" : -629, + "item" : false + }, + "minecraft:magenta_concrete_powder" : { + "id" : -710, + "item" : false + }, + "minecraft:magenta_dye" : { + "id" : 434, + "item" : true + }, + "minecraft:magenta_glazed_terracotta" : { + "id" : 222, + "item" : false + }, + "minecraft:magenta_shulker_box" : { + "id" : -614, + "item" : false + }, + "minecraft:magenta_stained_glass" : { + "id" : -674, + "item" : false + }, + "minecraft:magenta_stained_glass_pane" : { + "id" : -644, + "item" : false + }, + "minecraft:magenta_terracotta" : { + "id" : -725, + "item" : false + }, + "minecraft:magenta_wool" : { + "id" : -565, + "item" : false + }, + "minecraft:magma" : { + "id" : 213, + "item" : false + }, + "minecraft:magma_cream" : { + "id" : 457, + "item" : true + }, + "minecraft:magma_cube_spawn_egg" : { + "id" : 482, + "item" : true + }, + "minecraft:mangrove_boat" : { + "id" : 672, + "item" : true + }, + "minecraft:mangrove_button" : { + "id" : -487, + "item" : false + }, + "minecraft:mangrove_chest_boat" : { + "id" : 681, + "item" : true + }, + "minecraft:mangrove_door" : { + "id" : 670, + "item" : true + }, + "minecraft:mangrove_double_slab" : { + "id" : -499, + "item" : false + }, + "minecraft:mangrove_fence" : { + "id" : -491, + "item" : false + }, + "minecraft:mangrove_fence_gate" : { + "id" : -492, + "item" : false + }, + "minecraft:mangrove_hanging_sign" : { + "id" : -508, + "item" : true + }, + "minecraft:mangrove_leaves" : { + "id" : -472, + "item" : false + }, + "minecraft:mangrove_log" : { + "id" : -484, + "item" : false + }, + "minecraft:mangrove_planks" : { + "id" : -486, + "item" : false + }, + "minecraft:mangrove_pressure_plate" : { + "id" : -490, + "item" : false + }, + "minecraft:mangrove_propagule" : { + "id" : -474, + "item" : false + }, + "minecraft:mangrove_roots" : { + "id" : -482, + "item" : false + }, + "minecraft:mangrove_sign" : { + "id" : 671, + "item" : true + }, + "minecraft:mangrove_slab" : { + "id" : -489, + "item" : false + }, + "minecraft:mangrove_stairs" : { + "id" : -488, + "item" : false + }, + "minecraft:mangrove_standing_sign" : { + "id" : -494, + "item" : false + }, + "minecraft:mangrove_trapdoor" : { + "id" : -496, + "item" : false + }, + "minecraft:mangrove_wall_sign" : { + "id" : -495, + "item" : false + }, + "minecraft:mangrove_wood" : { + "id" : -497, + "item" : false + }, + "minecraft:material_reducer" : { + "id" : -986, + "item" : false + }, + "minecraft:medicine" : { + "id" : 636, + "item" : true + }, + "minecraft:medium_amethyst_bud" : { + "id" : -331, + "item" : false + }, + "minecraft:melon_block" : { + "id" : 103, + "item" : false + }, + "minecraft:melon_seeds" : { + "id" : 315, + "item" : true + }, + "minecraft:melon_slice" : { + "id" : 294, + "item" : true + }, + "minecraft:melon_stem" : { + "id" : 105, + "item" : false + }, + "minecraft:milk_bucket" : { + "id" : 386, + "item" : true + }, + "minecraft:minecart" : { + "id" : 395, + "item" : true + }, + "minecraft:miner_pottery_sherd" : { + "id" : 707, + "item" : true + }, + "minecraft:mob_spawner" : { + "id" : 52, + "item" : false + }, + "minecraft:mojang_banner_pattern" : { + "id" : 617, + "item" : true + }, + "minecraft:monster_egg" : { + "id" : 775, + "item" : true + }, + "minecraft:mooshroom_spawn_egg" : { + "id" : 467, + "item" : true + }, + "minecraft:moss_block" : { + "id" : -320, + "item" : false + }, + "minecraft:moss_carpet" : { + "id" : -335, + "item" : false + }, + "minecraft:mossy_cobblestone" : { + "id" : 48, + "item" : false + }, + "minecraft:mossy_cobblestone_double_slab" : { + "id" : -915, + "item" : false + }, + "minecraft:mossy_cobblestone_slab" : { + "id" : -888, + "item" : false + }, + "minecraft:mossy_cobblestone_stairs" : { + "id" : -179, + "item" : false + }, + "minecraft:mossy_cobblestone_wall" : { + "id" : -971, + "item" : false + }, + "minecraft:mossy_stone_brick_double_slab" : { + "id" : -168, + "item" : false + }, + "minecraft:mossy_stone_brick_slab" : { + "id" : -166, + "item" : false + }, + "minecraft:mossy_stone_brick_stairs" : { + "id" : -175, + "item" : false + }, + "minecraft:mossy_stone_brick_wall" : { + "id" : -978, + "item" : false + }, + "minecraft:mossy_stone_bricks" : { + "id" : -868, + "item" : false + }, + "minecraft:mourner_pottery_sherd" : { + "id" : 708, + "item" : true + }, + "minecraft:moving_block" : { + "id" : 250, + "item" : false + }, + "minecraft:mud" : { + "id" : -473, + "item" : false + }, + "minecraft:mud_brick_double_slab" : { + "id" : -479, + "item" : false + }, + "minecraft:mud_brick_slab" : { + "id" : -478, + "item" : false + }, + "minecraft:mud_brick_stairs" : { + "id" : -480, + "item" : false + }, + "minecraft:mud_brick_wall" : { + "id" : -481, + "item" : false + }, + "minecraft:mud_bricks" : { + "id" : -475, + "item" : false + }, + "minecraft:muddy_mangrove_roots" : { + "id" : -483, + "item" : false + }, + "minecraft:mule_spawn_egg" : { + "id" : 494, + "item" : true + }, + "minecraft:mushroom_stem" : { + "id" : -1008, + "item" : false + }, + "minecraft:mushroom_stew" : { + "id" : 282, + "item" : true + }, + "minecraft:music_disc_11" : { + "id" : 577, + "item" : true + }, + "minecraft:music_disc_13" : { + "id" : 567, + "item" : true + }, + "minecraft:music_disc_5" : { + "id" : 673, + "item" : true + }, + "minecraft:music_disc_blocks" : { + "id" : 569, + "item" : true + }, + "minecraft:music_disc_cat" : { + "id" : 568, + "item" : true + }, + "minecraft:music_disc_chirp" : { + "id" : 570, + "item" : true + }, + "minecraft:music_disc_creator" : { + "id" : 782, + "item" : true + }, + "minecraft:music_disc_creator_music_box" : { + "id" : 783, + "item" : true + }, + "minecraft:music_disc_far" : { + "id" : 571, + "item" : true + }, + "minecraft:music_disc_mall" : { + "id" : 572, + "item" : true + }, + "minecraft:music_disc_mellohi" : { + "id" : 573, + "item" : true + }, + "minecraft:music_disc_otherside" : { + "id" : 663, + "item" : true + }, + "minecraft:music_disc_pigstep" : { + "id" : 657, + "item" : true + }, + "minecraft:music_disc_precipice" : { + "id" : 784, + "item" : true + }, + "minecraft:music_disc_relic" : { + "id" : 736, + "item" : true + }, + "minecraft:music_disc_stal" : { + "id" : 574, + "item" : true + }, + "minecraft:music_disc_strad" : { + "id" : 575, + "item" : true + }, + "minecraft:music_disc_wait" : { + "id" : 578, + "item" : true + }, + "minecraft:music_disc_ward" : { + "id" : 576, + "item" : true + }, + "minecraft:mutton" : { + "id" : 583, + "item" : true + }, + "minecraft:mycelium" : { + "id" : 110, + "item" : false + }, + "minecraft:name_tag" : { + "id" : 581, + "item" : true + }, + "minecraft:nautilus_shell" : { + "id" : 603, + "item" : true + }, + "minecraft:nether_brick" : { + "id" : 112, + "item" : false + }, + "minecraft:nether_brick_double_slab" : { + "id" : -883, + "item" : false + }, + "minecraft:nether_brick_fence" : { + "id" : 113, + "item" : false + }, + "minecraft:nether_brick_slab" : { + "id" : -877, + "item" : false + }, + "minecraft:nether_brick_stairs" : { + "id" : 114, + "item" : false + }, + "minecraft:nether_brick_wall" : { + "id" : -979, + "item" : false + }, + "minecraft:nether_gold_ore" : { + "id" : -288, + "item" : false + }, + "minecraft:nether_sprouts" : { + "id" : 658, + "item" : true + }, + "minecraft:nether_star" : { + "id" : 551, + "item" : true + }, + "minecraft:nether_wart" : { + "id" : 316, + "item" : true + }, + "minecraft:nether_wart_block" : { + "id" : 214, + "item" : false + }, + "minecraft:netherbrick" : { + "id" : 556, + "item" : true + }, + "minecraft:netherite_axe" : { + "id" : 643, + "item" : true + }, + "minecraft:netherite_block" : { + "id" : -270, + "item" : false + }, + "minecraft:netherite_boots" : { + "id" : 649, + "item" : true + }, + "minecraft:netherite_chestplate" : { + "id" : 647, + "item" : true + }, + "minecraft:netherite_helmet" : { + "id" : 646, + "item" : true + }, + "minecraft:netherite_hoe" : { + "id" : 644, + "item" : true + }, + "minecraft:netherite_ingot" : { + "id" : 645, + "item" : true + }, + "minecraft:netherite_leggings" : { + "id" : 648, + "item" : true + }, + "minecraft:netherite_pickaxe" : { + "id" : 642, + "item" : true + }, + "minecraft:netherite_scrap" : { + "id" : 650, + "item" : true + }, + "minecraft:netherite_shovel" : { + "id" : 641, + "item" : true + }, + "minecraft:netherite_sword" : { + "id" : 640, + "item" : true + }, + "minecraft:netherite_upgrade_smithing_template" : { + "id" : 717, + "item" : true + }, + "minecraft:netherrack" : { + "id" : 87, + "item" : false + }, + "minecraft:netherreactor" : { + "id" : 247, + "item" : false + }, + "minecraft:normal_stone_double_slab" : { + "id" : -926, + "item" : false + }, + "minecraft:normal_stone_slab" : { + "id" : -899, + "item" : false + }, + "minecraft:normal_stone_stairs" : { + "id" : -180, + "item" : false + }, + "minecraft:noteblock" : { + "id" : 25, + "item" : false + }, + "minecraft:npc_spawn_egg" : { + "id" : 498, + "item" : true + }, + "minecraft:oak_boat" : { + "id" : 401, + "item" : true + }, + "minecraft:oak_chest_boat" : { + "id" : 675, + "item" : true + }, + "minecraft:oak_double_slab" : { + "id" : 157, + "item" : false + }, + "minecraft:oak_fence" : { + "id" : 85, + "item" : false + }, + "minecraft:oak_hanging_sign" : { + "id" : -500, + "item" : true + }, + "minecraft:oak_leaves" : { + "id" : 18, + "item" : false + }, + "minecraft:oak_log" : { + "id" : 17, + "item" : false + }, + "minecraft:oak_planks" : { + "id" : 5, + "item" : false + }, + "minecraft:oak_sapling" : { + "id" : 6, + "item" : false + }, + "minecraft:oak_sign" : { + "id" : 383, + "item" : true + }, + "minecraft:oak_slab" : { + "id" : 158, + "item" : false + }, + "minecraft:oak_stairs" : { + "id" : 53, + "item" : false + }, + "minecraft:oak_wood" : { + "id" : -212, + "item" : false + }, + "minecraft:observer" : { + "id" : 251, + "item" : false + }, + "minecraft:obsidian" : { + "id" : 49, + "item" : false + }, + "minecraft:ocelot_spawn_egg" : { + "id" : 478, + "item" : true + }, + "minecraft:ochre_froglight" : { + "id" : -471, + "item" : false + }, + "minecraft:ominous_bottle" : { + "id" : 628, + "item" : true + }, + "minecraft:ominous_trial_key" : { + "id" : 276, + "item" : true + }, + "minecraft:open_eyeblossom" : { + "id" : -1018, + "item" : false + }, + "minecraft:orange_bundle" : { + "id" : 265, + "item" : true + }, + "minecraft:orange_candle" : { + "id" : -414, + "item" : false + }, + "minecraft:orange_candle_cake" : { + "id" : -431, + "item" : false + }, + "minecraft:orange_carpet" : { + "id" : -597, + "item" : false + }, + "minecraft:orange_concrete" : { + "id" : -628, + "item" : false + }, + "minecraft:orange_concrete_powder" : { + "id" : -709, + "item" : false + }, + "minecraft:orange_dye" : { + "id" : 435, + "item" : true + }, + "minecraft:orange_glazed_terracotta" : { + "id" : 221, + "item" : false + }, + "minecraft:orange_shulker_box" : { + "id" : -613, + "item" : false + }, + "minecraft:orange_stained_glass" : { + "id" : -673, + "item" : false + }, + "minecraft:orange_stained_glass_pane" : { + "id" : -643, + "item" : false + }, + "minecraft:orange_terracotta" : { + "id" : -724, + "item" : false + }, + "minecraft:orange_tulip" : { + "id" : -834, + "item" : false + }, + "minecraft:orange_wool" : { + "id" : -557, + "item" : false + }, + "minecraft:oxeye_daisy" : { + "id" : -837, + "item" : false + }, + "minecraft:oxidized_chiseled_copper" : { + "id" : -763, + "item" : false + }, + "minecraft:oxidized_copper" : { + "id" : -343, + "item" : false + }, + "minecraft:oxidized_copper_bulb" : { + "id" : -779, + "item" : false + }, + "minecraft:oxidized_copper_door" : { + "id" : -787, + "item" : true + }, + "minecraft:oxidized_copper_grate" : { + "id" : -771, + "item" : false + }, + "minecraft:oxidized_copper_trapdoor" : { + "id" : -795, + "item" : false + }, + "minecraft:oxidized_cut_copper" : { + "id" : -350, + "item" : false + }, + "minecraft:oxidized_cut_copper_slab" : { + "id" : -364, + "item" : false + }, + "minecraft:oxidized_cut_copper_stairs" : { + "id" : -357, + "item" : false + }, + "minecraft:oxidized_double_cut_copper_slab" : { + "id" : -371, + "item" : false + }, + "minecraft:packed_ice" : { + "id" : 174, + "item" : false + }, + "minecraft:packed_mud" : { + "id" : -477, + "item" : false + }, + "minecraft:painting" : { + "id" : 382, + "item" : true + }, + "minecraft:pale_hanging_moss" : { + "id" : -1011, + "item" : false + }, + "minecraft:pale_moss_block" : { + "id" : -1009, + "item" : false + }, + "minecraft:pale_moss_carpet" : { + "id" : -1010, + "item" : false + }, + "minecraft:pale_oak_boat" : { + "id" : 744, + "item" : true + }, + "minecraft:pale_oak_button" : { + "id" : -989, + "item" : false + }, + "minecraft:pale_oak_chest_boat" : { + "id" : 745, + "item" : true + }, + "minecraft:pale_oak_door" : { + "id" : -990, + "item" : true + }, + "minecraft:pale_oak_double_slab" : { + "id" : -999, + "item" : false + }, + "minecraft:pale_oak_fence" : { + "id" : -991, + "item" : false + }, + "minecraft:pale_oak_fence_gate" : { + "id" : -992, + "item" : false + }, + "minecraft:pale_oak_hanging_sign" : { + "id" : -993, + "item" : true + }, + "minecraft:pale_oak_leaves" : { + "id" : -1007, + "item" : false + }, + "minecraft:pale_oak_log" : { + "id" : -995, + "item" : false + }, + "minecraft:pale_oak_planks" : { + "id" : -996, + "item" : false + }, + "minecraft:pale_oak_pressure_plate" : { + "id" : -997, + "item" : false + }, + "minecraft:pale_oak_sapling" : { + "id" : -1006, + "item" : false + }, + "minecraft:pale_oak_sign" : { + "id" : 746, + "item" : true + }, + "minecraft:pale_oak_slab" : { + "id" : -998, + "item" : false + }, + "minecraft:pale_oak_stairs" : { + "id" : -1000, + "item" : false + }, + "minecraft:pale_oak_standing_sign" : { + "id" : -1001, + "item" : false + }, + "minecraft:pale_oak_trapdoor" : { + "id" : -1002, + "item" : false + }, + "minecraft:pale_oak_wall_sign" : { + "id" : -1003, + "item" : false + }, + "minecraft:pale_oak_wood" : { + "id" : -1005, + "item" : false + }, + "minecraft:panda_spawn_egg" : { + "id" : 517, + "item" : true + }, + "minecraft:paper" : { + "id" : 412, + "item" : true + }, + "minecraft:parrot_spawn_egg" : { + "id" : 506, + "item" : true + }, + "minecraft:pearlescent_froglight" : { + "id" : -469, + "item" : false + }, + "minecraft:peony" : { + "id" : -867, + "item" : false + }, + "minecraft:petrified_oak_double_slab" : { + "id" : -903, + "item" : false + }, + "minecraft:petrified_oak_slab" : { + "id" : -902, + "item" : false + }, + "minecraft:phantom_membrane" : { + "id" : 607, + "item" : true + }, + "minecraft:phantom_spawn_egg" : { + "id" : 514, + "item" : true + }, + "minecraft:pig_spawn_egg" : { + "id" : 464, + "item" : true + }, + "minecraft:piglin_banner_pattern" : { + "id" : 620, + "item" : true + }, + "minecraft:piglin_brute_spawn_egg" : { + "id" : 527, + "item" : true + }, + "minecraft:piglin_head" : { + "id" : -970, + "item" : false + }, + "minecraft:piglin_spawn_egg" : { + "id" : 525, + "item" : true + }, + "minecraft:pillager_spawn_egg" : { + "id" : 519, + "item" : true + }, + "minecraft:pink_bundle" : { + "id" : 263, + "item" : true + }, + "minecraft:pink_candle" : { + "id" : -419, + "item" : false + }, + "minecraft:pink_candle_cake" : { + "id" : -436, + "item" : false + }, + "minecraft:pink_carpet" : { + "id" : -602, + "item" : false + }, + "minecraft:pink_concrete" : { + "id" : -633, + "item" : false + }, + "minecraft:pink_concrete_powder" : { + "id" : -714, + "item" : false + }, + "minecraft:pink_dye" : { + "id" : 430, + "item" : true + }, + "minecraft:pink_glazed_terracotta" : { + "id" : 226, + "item" : false + }, + "minecraft:pink_petals" : { + "id" : -549, + "item" : false + }, + "minecraft:pink_shulker_box" : { + "id" : -618, + "item" : false + }, + "minecraft:pink_stained_glass" : { + "id" : -678, + "item" : false + }, + "minecraft:pink_stained_glass_pane" : { + "id" : -648, + "item" : false + }, + "minecraft:pink_terracotta" : { + "id" : -729, + "item" : false + }, + "minecraft:pink_tulip" : { + "id" : -836, + "item" : false + }, + "minecraft:pink_wool" : { + "id" : -566, + "item" : false + }, + "minecraft:piston" : { + "id" : 33, + "item" : false + }, + "minecraft:piston_arm_collision" : { + "id" : 34, + "item" : false + }, + "minecraft:pitcher_crop" : { + "id" : -574, + "item" : false + }, + "minecraft:pitcher_plant" : { + "id" : -612, + "item" : false + }, + "minecraft:pitcher_pod" : { + "id" : 319, + "item" : true + }, + "minecraft:planks" : { + "id" : 771, + "item" : true + }, + "minecraft:player_head" : { + "id" : -967, + "item" : false + }, + "minecraft:plenty_pottery_sherd" : { + "id" : 709, + "item" : true + }, + "minecraft:podzol" : { + "id" : 243, + "item" : false + }, + "minecraft:pointed_dripstone" : { + "id" : -308, + "item" : false + }, + "minecraft:poisonous_potato" : { + "id" : 304, + "item" : true + }, + "minecraft:polar_bear_spawn_egg" : { + "id" : 500, + "item" : true + }, + "minecraft:polished_andesite" : { + "id" : -595, + "item" : false + }, + "minecraft:polished_andesite_double_slab" : { + "id" : -919, + "item" : false + }, + "minecraft:polished_andesite_slab" : { + "id" : -892, + "item" : false + }, + "minecraft:polished_andesite_stairs" : { + "id" : -174, + "item" : false + }, + "minecraft:polished_basalt" : { + "id" : -235, + "item" : false + }, + "minecraft:polished_blackstone" : { + "id" : -291, + "item" : false + }, + "minecraft:polished_blackstone_brick_double_slab" : { + "id" : -285, + "item" : false + }, + "minecraft:polished_blackstone_brick_slab" : { + "id" : -284, + "item" : false + }, + "minecraft:polished_blackstone_brick_stairs" : { + "id" : -275, + "item" : false + }, + "minecraft:polished_blackstone_brick_wall" : { + "id" : -278, + "item" : false + }, + "minecraft:polished_blackstone_bricks" : { + "id" : -274, + "item" : false + }, + "minecraft:polished_blackstone_button" : { + "id" : -296, + "item" : false + }, + "minecraft:polished_blackstone_double_slab" : { + "id" : -294, + "item" : false + }, + "minecraft:polished_blackstone_pressure_plate" : { + "id" : -295, + "item" : false + }, + "minecraft:polished_blackstone_slab" : { + "id" : -293, + "item" : false + }, + "minecraft:polished_blackstone_stairs" : { + "id" : -292, + "item" : false + }, + "minecraft:polished_blackstone_wall" : { + "id" : -297, + "item" : false + }, + "minecraft:polished_deepslate" : { + "id" : -383, + "item" : false + }, + "minecraft:polished_deepslate_double_slab" : { + "id" : -397, + "item" : false + }, + "minecraft:polished_deepslate_slab" : { + "id" : -384, + "item" : false + }, + "minecraft:polished_deepslate_stairs" : { + "id" : -385, + "item" : false + }, + "minecraft:polished_deepslate_wall" : { + "id" : -386, + "item" : false + }, + "minecraft:polished_diorite" : { + "id" : -593, + "item" : false + }, + "minecraft:polished_diorite_double_slab" : { + "id" : -922, + "item" : false + }, + "minecraft:polished_diorite_slab" : { + "id" : -895, + "item" : false + }, + "minecraft:polished_diorite_stairs" : { + "id" : -173, + "item" : false + }, + "minecraft:polished_granite" : { + "id" : -591, + "item" : false + }, + "minecraft:polished_granite_double_slab" : { + "id" : -924, + "item" : false + }, + "minecraft:polished_granite_slab" : { + "id" : -897, + "item" : false + }, + "minecraft:polished_granite_stairs" : { + "id" : -172, + "item" : false + }, + "minecraft:polished_tuff" : { + "id" : -748, + "item" : false + }, + "minecraft:polished_tuff_double_slab" : { + "id" : -750, + "item" : false + }, + "minecraft:polished_tuff_slab" : { + "id" : -749, + "item" : false + }, + "minecraft:polished_tuff_stairs" : { + "id" : -751, + "item" : false + }, + "minecraft:polished_tuff_wall" : { + "id" : -752, + "item" : false + }, + "minecraft:popped_chorus_fruit" : { + "id" : 592, + "item" : true + }, + "minecraft:poppy" : { + "id" : 38, + "item" : false + }, + "minecraft:porkchop" : { + "id" : 284, + "item" : true + }, + "minecraft:portal" : { + "id" : 90, + "item" : false + }, + "minecraft:potato" : { + "id" : 302, + "item" : true + }, + "minecraft:potatoes" : { + "id" : 142, + "item" : false + }, + "minecraft:potion" : { + "id" : 453, + "item" : true + }, + "minecraft:powder_snow" : { + "id" : -306, + "item" : false + }, + "minecraft:powder_snow_bucket" : { + "id" : 393, + "item" : true + }, + "minecraft:powered_comparator" : { + "id" : 150, + "item" : false + }, + "minecraft:powered_repeater" : { + "id" : 94, + "item" : false + }, + "minecraft:prismarine" : { + "id" : 168, + "item" : false + }, + "minecraft:prismarine_brick_double_slab" : { + "id" : -914, + "item" : false + }, + "minecraft:prismarine_brick_slab" : { + "id" : -887, + "item" : false + }, + "minecraft:prismarine_bricks" : { + "id" : -948, + "item" : false + }, + "minecraft:prismarine_bricks_stairs" : { + "id" : -4, + "item" : false + }, + "minecraft:prismarine_crystals" : { + "id" : 582, + "item" : true + }, + "minecraft:prismarine_double_slab" : { + "id" : -912, + "item" : false + }, + "minecraft:prismarine_shard" : { + "id" : 598, + "item" : true + }, + "minecraft:prismarine_slab" : { + "id" : -885, + "item" : false + }, + "minecraft:prismarine_stairs" : { + "id" : -2, + "item" : false + }, + "minecraft:prismarine_wall" : { + "id" : -981, + "item" : false + }, + "minecraft:prize_pottery_sherd" : { + "id" : 710, + "item" : true + }, + "minecraft:pufferfish" : { + "id" : 289, + "item" : true + }, + "minecraft:pufferfish_bucket" : { + "id" : 392, + "item" : true + }, + "minecraft:pufferfish_spawn_egg" : { + "id" : 509, + "item" : true + }, + "minecraft:pumpkin" : { + "id" : 86, + "item" : false + }, + "minecraft:pumpkin_pie" : { + "id" : 306, + "item" : true + }, + "minecraft:pumpkin_seeds" : { + "id" : 314, + "item" : true + }, + "minecraft:pumpkin_stem" : { + "id" : 104, + "item" : false + }, + "minecraft:purple_bundle" : { + "id" : 257, + "item" : true + }, + "minecraft:purple_candle" : { + "id" : -423, + "item" : false + }, + "minecraft:purple_candle_cake" : { + "id" : -440, + "item" : false + }, + "minecraft:purple_carpet" : { + "id" : -606, + "item" : false + }, + "minecraft:purple_concrete" : { + "id" : -637, + "item" : false + }, + "minecraft:purple_concrete_powder" : { + "id" : -718, + "item" : false + }, + "minecraft:purple_dye" : { + "id" : 426, + "item" : true + }, + "minecraft:purple_glazed_terracotta" : { + "id" : 219, + "item" : false + }, + "minecraft:purple_shulker_box" : { + "id" : -622, + "item" : false + }, + "minecraft:purple_stained_glass" : { + "id" : -682, + "item" : false + }, + "minecraft:purple_stained_glass_pane" : { + "id" : -652, + "item" : false + }, + "minecraft:purple_terracotta" : { + "id" : -733, + "item" : false + }, + "minecraft:purple_wool" : { + "id" : -564, + "item" : false + }, + "minecraft:purpur_block" : { + "id" : 201, + "item" : false + }, + "minecraft:purpur_double_slab" : { + "id" : -911, + "item" : false + }, + "minecraft:purpur_pillar" : { + "id" : -951, + "item" : false + }, + "minecraft:purpur_slab" : { + "id" : -884, + "item" : false + }, + "minecraft:purpur_stairs" : { + "id" : 203, + "item" : false + }, + "minecraft:quartz" : { + "id" : 557, + "item" : true + }, + "minecraft:quartz_block" : { + "id" : 155, + "item" : false + }, + "minecraft:quartz_bricks" : { + "id" : -304, + "item" : false + }, + "minecraft:quartz_double_slab" : { + "id" : -882, + "item" : false + }, + "minecraft:quartz_ore" : { + "id" : 153, + "item" : false + }, + "minecraft:quartz_pillar" : { + "id" : -954, + "item" : false + }, + "minecraft:quartz_slab" : { + "id" : -876, + "item" : false + }, + "minecraft:quartz_stairs" : { + "id" : 156, + "item" : false + }, + "minecraft:rabbit" : { + "id" : 310, + "item" : true + }, + "minecraft:rabbit_foot" : { + "id" : 561, + "item" : true + }, + "minecraft:rabbit_hide" : { + "id" : 562, + "item" : true + }, + "minecraft:rabbit_spawn_egg" : { + "id" : 486, + "item" : true + }, + "minecraft:rabbit_stew" : { + "id" : 312, + "item" : true + }, + "minecraft:rail" : { + "id" : 66, + "item" : false + }, + "minecraft:raiser_armor_trim_smithing_template" : { + "id" : 731, + "item" : true + }, + "minecraft:rapid_fertilizer" : { + "id" : 634, + "item" : true + }, + "minecraft:ravager_spawn_egg" : { + "id" : 521, + "item" : true + }, + "minecraft:raw_copper" : { + "id" : 541, + "item" : true + }, + "minecraft:raw_copper_block" : { + "id" : -452, + "item" : false + }, + "minecraft:raw_gold" : { + "id" : 540, + "item" : true + }, + "minecraft:raw_gold_block" : { + "id" : -453, + "item" : false + }, + "minecraft:raw_iron" : { + "id" : 539, + "item" : true + }, + "minecraft:raw_iron_block" : { + "id" : -451, + "item" : false + }, + "minecraft:recovery_compass" : { + "id" : 683, + "item" : true + }, + "minecraft:red_bundle" : { + "id" : 273, + "item" : true + }, + "minecraft:red_candle" : { + "id" : -427, + "item" : false + }, + "minecraft:red_candle_cake" : { + "id" : -444, + "item" : false + }, + "minecraft:red_carpet" : { + "id" : -610, + "item" : false + }, + "minecraft:red_concrete" : { + "id" : -641, + "item" : false + }, + "minecraft:red_concrete_powder" : { + "id" : -722, + "item" : false + }, + "minecraft:red_dye" : { + "id" : 422, + "item" : true + }, + "minecraft:red_flower" : { + "id" : 769, + "item" : true + }, + "minecraft:red_glazed_terracotta" : { + "id" : 234, + "item" : false + }, + "minecraft:red_mushroom" : { + "id" : 40, + "item" : false + }, + "minecraft:red_mushroom_block" : { + "id" : 100, + "item" : false + }, + "minecraft:red_nether_brick" : { + "id" : 215, + "item" : false + }, + "minecraft:red_nether_brick_double_slab" : { + "id" : -917, + "item" : false + }, + "minecraft:red_nether_brick_slab" : { + "id" : -890, + "item" : false + }, + "minecraft:red_nether_brick_stairs" : { + "id" : -184, + "item" : false + }, + "minecraft:red_nether_brick_wall" : { + "id" : -983, + "item" : false + }, + "minecraft:red_sand" : { + "id" : -949, + "item" : false + }, + "minecraft:red_sandstone" : { + "id" : 179, + "item" : false + }, + "minecraft:red_sandstone_double_slab" : { + "id" : 181, + "item" : false + }, + "minecraft:red_sandstone_slab" : { + "id" : 182, + "item" : false + }, + "minecraft:red_sandstone_stairs" : { + "id" : 180, + "item" : false + }, + "minecraft:red_sandstone_wall" : { + "id" : -982, + "item" : false + }, + "minecraft:red_shulker_box" : { + "id" : -626, + "item" : false + }, + "minecraft:red_stained_glass" : { + "id" : -686, + "item" : false + }, + "minecraft:red_stained_glass_pane" : { + "id" : -656, + "item" : false + }, + "minecraft:red_terracotta" : { + "id" : -737, + "item" : false + }, + "minecraft:red_tulip" : { + "id" : -833, + "item" : false + }, + "minecraft:red_wool" : { + "id" : -556, + "item" : false + }, + "minecraft:redstone" : { + "id" : 398, + "item" : true + }, + "minecraft:redstone_block" : { + "id" : 152, + "item" : false + }, + "minecraft:redstone_lamp" : { + "id" : 123, + "item" : false + }, + "minecraft:redstone_ore" : { + "id" : 73, + "item" : false + }, + "minecraft:redstone_torch" : { + "id" : 76, + "item" : false + }, + "minecraft:redstone_wire" : { + "id" : 55, + "item" : false + }, + "minecraft:reinforced_deepslate" : { + "id" : -466, + "item" : false + }, + "minecraft:repeater" : { + "id" : 445, + "item" : true + }, + "minecraft:repeating_command_block" : { + "id" : 188, + "item" : false + }, + "minecraft:reserved6" : { + "id" : 255, + "item" : false + }, + "minecraft:resin_block" : { + "id" : -1021, + "item" : false + }, + "minecraft:resin_brick" : { + "id" : 748, + "item" : true + }, + "minecraft:resin_brick_double_slab" : { + "id" : -1015, + "item" : false + }, + "minecraft:resin_brick_slab" : { + "id" : -1014, + "item" : false + }, + "minecraft:resin_brick_stairs" : { + "id" : -1016, + "item" : false + }, + "minecraft:resin_brick_wall" : { + "id" : -1017, + "item" : false + }, + "minecraft:resin_bricks" : { + "id" : -1013, + "item" : false + }, + "minecraft:resin_clump" : { + "id" : -1022, + "item" : false + }, + "minecraft:respawn_anchor" : { + "id" : -272, + "item" : false + }, + "minecraft:rib_armor_trim_smithing_template" : { + "id" : 727, + "item" : true + }, + "minecraft:rose_bush" : { + "id" : -866, + "item" : false + }, + "minecraft:rotten_flesh" : { + "id" : 299, + "item" : true + }, + "minecraft:saddle" : { + "id" : 396, + "item" : true + }, + "minecraft:salmon" : { + "id" : 287, + "item" : true + }, + "minecraft:salmon_bucket" : { + "id" : 390, + "item" : true + }, + "minecraft:salmon_spawn_egg" : { + "id" : 510, + "item" : true + }, + "minecraft:sand" : { + "id" : 12, + "item" : false + }, + "minecraft:sandstone" : { + "id" : 24, + "item" : false + }, + "minecraft:sandstone_double_slab" : { + "id" : -878, + "item" : false + }, + "minecraft:sandstone_slab" : { + "id" : -872, + "item" : false + }, + "minecraft:sandstone_stairs" : { + "id" : 128, + "item" : false + }, + "minecraft:sandstone_wall" : { + "id" : -975, + "item" : false + }, + "minecraft:sapling" : { + "id" : 765, + "item" : true + }, + "minecraft:scaffolding" : { + "id" : -165, + "item" : false + }, + "minecraft:scrape_pottery_sherd" : { + "id" : 711, + "item" : true + }, + "minecraft:sculk" : { + "id" : -458, + "item" : false + }, + "minecraft:sculk_catalyst" : { + "id" : -460, + "item" : false + }, + "minecraft:sculk_sensor" : { + "id" : -307, + "item" : false + }, + "minecraft:sculk_shrieker" : { + "id" : -461, + "item" : false + }, + "minecraft:sculk_vein" : { + "id" : -459, + "item" : false + }, + "minecraft:sea_lantern" : { + "id" : 169, + "item" : false + }, + "minecraft:sea_pickle" : { + "id" : -156, + "item" : false + }, + "minecraft:seagrass" : { + "id" : -130, + "item" : false + }, + "minecraft:sentry_armor_trim_smithing_template" : { + "id" : 718, + "item" : true + }, + "minecraft:shaper_armor_trim_smithing_template" : { + "id" : 732, + "item" : true + }, + "minecraft:sheaf_pottery_sherd" : { + "id" : 712, + "item" : true + }, + "minecraft:shears" : { + "id" : 447, + "item" : true + }, + "minecraft:sheep_spawn_egg" : { + "id" : 465, + "item" : true + }, + "minecraft:shelter_pottery_sherd" : { + "id" : 713, + "item" : true + }, + "minecraft:shield" : { + "id" : 380, + "item" : true + }, + "minecraft:short_grass" : { + "id" : 31, + "item" : false + }, + "minecraft:shroomlight" : { + "id" : -230, + "item" : false + }, + "minecraft:shulker_box" : { + "id" : 780, + "item" : true + }, + "minecraft:shulker_shell" : { + "id" : 599, + "item" : true + }, + "minecraft:shulker_spawn_egg" : { + "id" : 497, + "item" : true + }, + "minecraft:silence_armor_trim_smithing_template" : { + "id" : 729, + "item" : true + }, + "minecraft:silver_glazed_terracotta" : { + "id" : 228, + "item" : false + }, + "minecraft:silverfish_spawn_egg" : { + "id" : 470, + "item" : true + }, + "minecraft:skeleton_horse_spawn_egg" : { + "id" : 495, + "item" : true + }, + "minecraft:skeleton_skull" : { + "id" : 144, + "item" : false + }, + "minecraft:skeleton_spawn_egg" : { + "id" : 471, + "item" : true + }, + "minecraft:skull" : { + "id" : 737, + "item" : true + }, + "minecraft:skull_banner_pattern" : { + "id" : 616, + "item" : true + }, + "minecraft:skull_pottery_sherd" : { + "id" : 714, + "item" : true + }, + "minecraft:slime" : { + "id" : 165, + "item" : false + }, + "minecraft:slime_ball" : { + "id" : 414, + "item" : true + }, + "minecraft:slime_spawn_egg" : { + "id" : 472, + "item" : true + }, + "minecraft:small_amethyst_bud" : { + "id" : -332, + "item" : false + }, + "minecraft:small_dripleaf_block" : { + "id" : -336, + "item" : false + }, + "minecraft:smithing_table" : { + "id" : -202, + "item" : false + }, + "minecraft:smoker" : { + "id" : -198, + "item" : false + }, + "minecraft:smooth_basalt" : { + "id" : -377, + "item" : false + }, + "minecraft:smooth_quartz" : { + "id" : -955, + "item" : false + }, + "minecraft:smooth_quartz_double_slab" : { + "id" : -925, + "item" : false + }, + "minecraft:smooth_quartz_slab" : { + "id" : -898, + "item" : false + }, + "minecraft:smooth_quartz_stairs" : { + "id" : -185, + "item" : false + }, + "minecraft:smooth_red_sandstone" : { + "id" : -958, + "item" : false + }, + "minecraft:smooth_red_sandstone_double_slab" : { + "id" : -918, + "item" : false + }, + "minecraft:smooth_red_sandstone_slab" : { + "id" : -891, + "item" : false + }, + "minecraft:smooth_red_sandstone_stairs" : { + "id" : -176, + "item" : false + }, + "minecraft:smooth_sandstone" : { + "id" : -946, + "item" : false + }, + "minecraft:smooth_sandstone_double_slab" : { + "id" : -916, + "item" : false + }, + "minecraft:smooth_sandstone_slab" : { + "id" : -889, + "item" : false + }, + "minecraft:smooth_sandstone_stairs" : { + "id" : -177, + "item" : false + }, + "minecraft:smooth_stone" : { + "id" : -183, + "item" : false + }, + "minecraft:smooth_stone_double_slab" : { + "id" : 43, + "item" : false + }, + "minecraft:smooth_stone_slab" : { + "id" : 44, + "item" : false + }, + "minecraft:sniffer_egg" : { + "id" : -596, + "item" : false + }, + "minecraft:sniffer_spawn_egg" : { + "id" : 528, + "item" : true + }, + "minecraft:snort_pottery_sherd" : { + "id" : 715, + "item" : true + }, + "minecraft:snout_armor_trim_smithing_template" : { + "id" : 726, + "item" : true + }, + "minecraft:snow" : { + "id" : 80, + "item" : false + }, + "minecraft:snow_golem_spawn_egg" : { + "id" : 534, + "item" : true + }, + "minecraft:snow_layer" : { + "id" : 78, + "item" : false + }, + "minecraft:snowball" : { + "id" : 399, + "item" : true + }, + "minecraft:soul_campfire" : { + "id" : 659, + "item" : true + }, + "minecraft:soul_fire" : { + "id" : -237, + "item" : false + }, + "minecraft:soul_lantern" : { + "id" : -269, + "item" : false + }, + "minecraft:soul_sand" : { + "id" : 88, + "item" : false + }, + "minecraft:soul_soil" : { + "id" : -236, + "item" : false + }, + "minecraft:soul_torch" : { + "id" : -268, + "item" : false + }, + "minecraft:sparkler" : { + "id" : 637, + "item" : true + }, + "minecraft:spawn_egg" : { + "id" : 794, + "item" : true + }, + "minecraft:spider_eye" : { + "id" : 300, + "item" : true + }, + "minecraft:spider_spawn_egg" : { + "id" : 473, + "item" : true + }, + "minecraft:spire_armor_trim_smithing_template" : { + "id" : 728, + "item" : true + }, + "minecraft:splash_potion" : { + "id" : 594, + "item" : true + }, + "minecraft:sponge" : { + "id" : 19, + "item" : false + }, + "minecraft:spore_blossom" : { + "id" : -321, + "item" : false + }, + "minecraft:spruce_boat" : { + "id" : 404, + "item" : true + }, + "minecraft:spruce_button" : { + "id" : -144, + "item" : false + }, + "minecraft:spruce_chest_boat" : { + "id" : 678, + "item" : true + }, + "minecraft:spruce_door" : { + "id" : 586, + "item" : true + }, + "minecraft:spruce_double_slab" : { + "id" : -809, + "item" : false + }, + "minecraft:spruce_fence" : { + "id" : -579, + "item" : false + }, + "minecraft:spruce_fence_gate" : { + "id" : 183, + "item" : false + }, + "minecraft:spruce_hanging_sign" : { + "id" : -501, + "item" : true + }, + "minecraft:spruce_leaves" : { + "id" : -800, + "item" : false + }, + "minecraft:spruce_log" : { + "id" : -569, + "item" : false + }, + "minecraft:spruce_planks" : { + "id" : -739, + "item" : false + }, + "minecraft:spruce_pressure_plate" : { + "id" : -154, + "item" : false + }, + "minecraft:spruce_sapling" : { + "id" : -825, + "item" : false + }, + "minecraft:spruce_sign" : { + "id" : 609, + "item" : true + }, + "minecraft:spruce_slab" : { + "id" : -804, + "item" : false + }, + "minecraft:spruce_stairs" : { + "id" : 134, + "item" : false + }, + "minecraft:spruce_standing_sign" : { + "id" : -181, + "item" : false + }, + "minecraft:spruce_trapdoor" : { + "id" : -149, + "item" : false + }, + "minecraft:spruce_wall_sign" : { + "id" : -182, + "item" : false + }, + "minecraft:spruce_wood" : { + "id" : -814, + "item" : false + }, + "minecraft:spyglass" : { + "id" : 662, + "item" : true + }, + "minecraft:squid_spawn_egg" : { + "id" : 477, + "item" : true + }, + "minecraft:stained_glass" : { + "id" : 778, + "item" : true + }, + "minecraft:stained_glass_pane" : { + "id" : 779, + "item" : true + }, + "minecraft:stained_hardened_clay" : { + "id" : 738, + "item" : true + }, + "minecraft:standing_banner" : { + "id" : 176, + "item" : false + }, + "minecraft:standing_sign" : { + "id" : 63, + "item" : false + }, + "minecraft:stick" : { + "id" : 345, + "item" : true + }, + "minecraft:sticky_piston" : { + "id" : 29, + "item" : false + }, + "minecraft:sticky_piston_arm_collision" : { + "id" : -217, + "item" : false + }, + "minecraft:stone" : { + "id" : 1, + "item" : false + }, + "minecraft:stone_axe" : { + "id" : 339, + "item" : true + }, + "minecraft:stone_block_slab" : { + "id" : 755, + "item" : true + }, + "minecraft:stone_block_slab2" : { + "id" : 756, + "item" : true + }, + "minecraft:stone_block_slab3" : { + "id" : 757, + "item" : true + }, + "minecraft:stone_block_slab4" : { + "id" : 758, + "item" : true + }, + "minecraft:stone_brick_double_slab" : { + "id" : -881, + "item" : false + }, + "minecraft:stone_brick_slab" : { + "id" : -875, + "item" : false + }, + "minecraft:stone_brick_stairs" : { + "id" : 109, + "item" : false + }, + "minecraft:stone_brick_wall" : { + "id" : -977, + "item" : false + }, + "minecraft:stone_bricks" : { + "id" : 98, + "item" : false + }, + "minecraft:stone_button" : { + "id" : 77, + "item" : false + }, + "minecraft:stone_hoe" : { + "id" : 355, + "item" : true + }, + "minecraft:stone_pickaxe" : { + "id" : 338, + "item" : true + }, + "minecraft:stone_pressure_plate" : { + "id" : 70, + "item" : false + }, + "minecraft:stone_shovel" : { + "id" : 337, + "item" : true + }, + "minecraft:stone_stairs" : { + "id" : 67, + "item" : false + }, + "minecraft:stone_sword" : { + "id" : 336, + "item" : true + }, + "minecraft:stonebrick" : { + "id" : 753, + "item" : true + }, + "minecraft:stonecutter" : { + "id" : 245, + "item" : false + }, + "minecraft:stonecutter_block" : { + "id" : -197, + "item" : false + }, + "minecraft:stray_spawn_egg" : { + "id" : 489, + "item" : true + }, + "minecraft:strider_spawn_egg" : { + "id" : 523, + "item" : true + }, + "minecraft:string" : { + "id" : 351, + "item" : true + }, + "minecraft:stripped_acacia_log" : { + "id" : -8, + "item" : false + }, + "minecraft:stripped_acacia_wood" : { + "id" : -823, + "item" : false + }, + "minecraft:stripped_bamboo_block" : { + "id" : -528, + "item" : false + }, + "minecraft:stripped_birch_log" : { + "id" : -6, + "item" : false + }, + "minecraft:stripped_birch_wood" : { + "id" : -821, + "item" : false + }, + "minecraft:stripped_cherry_log" : { + "id" : -535, + "item" : false + }, + "minecraft:stripped_cherry_wood" : { + "id" : -545, + "item" : false + }, + "minecraft:stripped_crimson_hyphae" : { + "id" : -300, + "item" : false + }, + "minecraft:stripped_crimson_stem" : { + "id" : -240, + "item" : false + }, + "minecraft:stripped_dark_oak_log" : { + "id" : -9, + "item" : false + }, + "minecraft:stripped_dark_oak_wood" : { + "id" : -824, + "item" : false + }, + "minecraft:stripped_jungle_log" : { + "id" : -7, + "item" : false + }, + "minecraft:stripped_jungle_wood" : { + "id" : -822, + "item" : false + }, + "minecraft:stripped_mangrove_log" : { + "id" : -485, + "item" : false + }, + "minecraft:stripped_mangrove_wood" : { + "id" : -498, + "item" : false + }, + "minecraft:stripped_oak_log" : { + "id" : -10, + "item" : false + }, + "minecraft:stripped_oak_wood" : { + "id" : -819, + "item" : false + }, + "minecraft:stripped_pale_oak_log" : { + "id" : -994, + "item" : false + }, + "minecraft:stripped_pale_oak_wood" : { + "id" : -1004, + "item" : false + }, + "minecraft:stripped_spruce_log" : { + "id" : -5, + "item" : false + }, + "minecraft:stripped_spruce_wood" : { + "id" : -820, + "item" : false + }, + "minecraft:stripped_warped_hyphae" : { + "id" : -301, + "item" : false + }, + "minecraft:stripped_warped_stem" : { + "id" : -241, + "item" : false + }, + "minecraft:structure_block" : { + "id" : 252, + "item" : false + }, + "minecraft:structure_void" : { + "id" : 217, + "item" : false + }, + "minecraft:sugar" : { + "id" : 442, + "item" : true + }, + "minecraft:sugar_cane" : { + "id" : 411, + "item" : true + }, + "minecraft:sunflower" : { + "id" : 175, + "item" : false + }, + "minecraft:suspicious_gravel" : { + "id" : -573, + "item" : false + }, + "minecraft:suspicious_sand" : { + "id" : -529, + "item" : false + }, + "minecraft:suspicious_stew" : { + "id" : 625, + "item" : true + }, + "minecraft:sweet_berries" : { + "id" : 309, + "item" : true + }, + "minecraft:sweet_berry_bush" : { + "id" : -207, + "item" : false + }, + "minecraft:tadpole_bucket" : { + "id" : 667, + "item" : true + }, + "minecraft:tadpole_spawn_egg" : { + "id" : 666, + "item" : true + }, + "minecraft:tall_grass" : { + "id" : -864, + "item" : false + }, + "minecraft:tallgrass" : { + "id" : 773, + "item" : true + }, + "minecraft:target" : { + "id" : -239, + "item" : false + }, + "minecraft:tide_armor_trim_smithing_template" : { + "id" : 725, + "item" : true + }, + "minecraft:tinted_glass" : { + "id" : -334, + "item" : false + }, + "minecraft:tnt" : { + "id" : 46, + "item" : false + }, + "minecraft:tnt_minecart" : { + "id" : 558, + "item" : true + }, + "minecraft:torch" : { + "id" : 50, + "item" : false + }, + "minecraft:torchflower" : { + "id" : -568, + "item" : false + }, + "minecraft:torchflower_crop" : { + "id" : -567, + "item" : false + }, + "minecraft:torchflower_seeds" : { + "id" : 318, + "item" : true + }, + "minecraft:totem_of_undying" : { + "id" : 601, + "item" : true + }, + "minecraft:trader_llama_spawn_egg" : { + "id" : 685, + "item" : true + }, + "minecraft:trapdoor" : { + "id" : 96, + "item" : false + }, + "minecraft:trapped_chest" : { + "id" : 146, + "item" : false + }, + "minecraft:trial_key" : { + "id" : 275, + "item" : true + }, + "minecraft:trial_spawner" : { + "id" : -315, + "item" : false + }, + "minecraft:trident" : { + "id" : 579, + "item" : true + }, + "minecraft:trip_wire" : { + "id" : 132, + "item" : false + }, + "minecraft:tripwire_hook" : { + "id" : 131, + "item" : false + }, + "minecraft:tropical_fish" : { + "id" : 288, + "item" : true + }, + "minecraft:tropical_fish_bucket" : { + "id" : 391, + "item" : true + }, + "minecraft:tropical_fish_spawn_egg" : { + "id" : 507, + "item" : true + }, + "minecraft:tube_coral" : { + "id" : -131, + "item" : false + }, + "minecraft:tube_coral_block" : { + "id" : -132, + "item" : false + }, + "minecraft:tube_coral_fan" : { + "id" : -133, + "item" : false + }, + "minecraft:tube_coral_wall_fan" : { + "id" : -135, + "item" : false + }, + "minecraft:tuff" : { + "id" : -333, + "item" : false + }, + "minecraft:tuff_brick_double_slab" : { + "id" : -756, + "item" : false + }, + "minecraft:tuff_brick_slab" : { + "id" : -755, + "item" : false + }, + "minecraft:tuff_brick_stairs" : { + "id" : -757, + "item" : false + }, + "minecraft:tuff_brick_wall" : { + "id" : -758, + "item" : false + }, + "minecraft:tuff_bricks" : { + "id" : -754, + "item" : false + }, + "minecraft:tuff_double_slab" : { + "id" : -745, + "item" : false + }, + "minecraft:tuff_slab" : { + "id" : -744, + "item" : false + }, + "minecraft:tuff_stairs" : { + "id" : -746, + "item" : false + }, + "minecraft:tuff_wall" : { + "id" : -747, + "item" : false + }, + "minecraft:turtle_egg" : { + "id" : -159, + "item" : false + }, + "minecraft:turtle_helmet" : { + "id" : 606, + "item" : true + }, + "minecraft:turtle_scute" : { + "id" : 605, + "item" : true + }, + "minecraft:turtle_spawn_egg" : { + "id" : 513, + "item" : true + }, + "minecraft:twisting_vines" : { + "id" : -287, + "item" : false + }, + "minecraft:underwater_tnt" : { + "id" : -985, + "item" : false + }, + "minecraft:underwater_torch" : { + "id" : 239, + "item" : false + }, + "minecraft:undyed_shulker_box" : { + "id" : 205, + "item" : false + }, + "minecraft:unknown" : { + "id" : -305, + "item" : false + }, + "minecraft:unlit_redstone_torch" : { + "id" : 75, + "item" : false + }, + "minecraft:unpowered_comparator" : { + "id" : 149, + "item" : false + }, + "minecraft:unpowered_repeater" : { + "id" : 93, + "item" : false + }, + "minecraft:vault" : { + "id" : -314, + "item" : false + }, + "minecraft:verdant_froglight" : { + "id" : -470, + "item" : false + }, + "minecraft:vex_armor_trim_smithing_template" : { + "id" : 724, + "item" : true + }, + "minecraft:vex_spawn_egg" : { + "id" : 504, + "item" : true + }, + "minecraft:villager_spawn_egg" : { + "id" : 476, + "item" : true + }, + "minecraft:vindicator_spawn_egg" : { + "id" : 502, + "item" : true + }, + "minecraft:vine" : { + "id" : 106, + "item" : false + }, + "minecraft:wall_banner" : { + "id" : 177, + "item" : false + }, + "minecraft:wall_sign" : { + "id" : 68, + "item" : false + }, + "minecraft:wandering_trader_spawn_egg" : { + "id" : 520, + "item" : true + }, + "minecraft:ward_armor_trim_smithing_template" : { + "id" : 722, + "item" : true + }, + "minecraft:warden_spawn_egg" : { + "id" : 669, + "item" : true + }, + "minecraft:warped_button" : { + "id" : -261, + "item" : false + }, + "minecraft:warped_door" : { + "id" : 654, + "item" : true + }, + "minecraft:warped_double_slab" : { + "id" : -267, + "item" : false + }, + "minecraft:warped_fence" : { + "id" : -257, + "item" : false + }, + "minecraft:warped_fence_gate" : { + "id" : -259, + "item" : false + }, + "minecraft:warped_fungus" : { + "id" : -229, + "item" : false + }, + "minecraft:warped_fungus_on_a_stick" : { + "id" : 655, + "item" : true + }, + "minecraft:warped_hanging_sign" : { + "id" : -507, + "item" : true + }, + "minecraft:warped_hyphae" : { + "id" : -298, + "item" : false + }, + "minecraft:warped_nylium" : { + "id" : -233, + "item" : false + }, + "minecraft:warped_planks" : { + "id" : -243, + "item" : false + }, + "minecraft:warped_pressure_plate" : { + "id" : -263, + "item" : false + }, + "minecraft:warped_roots" : { + "id" : -224, + "item" : false + }, + "minecraft:warped_sign" : { + "id" : 652, + "item" : true + }, + "minecraft:warped_slab" : { + "id" : -265, + "item" : false + }, + "minecraft:warped_stairs" : { + "id" : -255, + "item" : false + }, + "minecraft:warped_standing_sign" : { + "id" : -251, + "item" : false + }, + "minecraft:warped_stem" : { + "id" : -226, + "item" : false + }, + "minecraft:warped_trapdoor" : { + "id" : -247, + "item" : false + }, + "minecraft:warped_wall_sign" : { + "id" : -253, + "item" : false + }, + "minecraft:warped_wart_block" : { + "id" : -227, + "item" : false + }, + "minecraft:water" : { + "id" : 9, + "item" : false + }, + "minecraft:water_bucket" : { + "id" : 387, + "item" : true + }, + "minecraft:waterlily" : { + "id" : 111, + "item" : false + }, + "minecraft:waxed_chiseled_copper" : { + "id" : -764, + "item" : false + }, + "minecraft:waxed_copper" : { + "id" : -344, + "item" : false + }, + "minecraft:waxed_copper_bulb" : { + "id" : -780, + "item" : false + }, + "minecraft:waxed_copper_door" : { + "id" : -788, + "item" : true + }, + "minecraft:waxed_copper_grate" : { + "id" : -772, + "item" : false + }, + "minecraft:waxed_copper_trapdoor" : { + "id" : -796, + "item" : false + }, + "minecraft:waxed_cut_copper" : { + "id" : -351, + "item" : false + }, + "minecraft:waxed_cut_copper_slab" : { + "id" : -365, + "item" : false + }, + "minecraft:waxed_cut_copper_stairs" : { + "id" : -358, + "item" : false + }, + "minecraft:waxed_double_cut_copper_slab" : { + "id" : -372, + "item" : false + }, + "minecraft:waxed_exposed_chiseled_copper" : { + "id" : -765, + "item" : false + }, + "minecraft:waxed_exposed_copper" : { + "id" : -345, + "item" : false + }, + "minecraft:waxed_exposed_copper_bulb" : { + "id" : -781, + "item" : false + }, + "minecraft:waxed_exposed_copper_door" : { + "id" : -789, + "item" : true + }, + "minecraft:waxed_exposed_copper_grate" : { + "id" : -773, + "item" : false + }, + "minecraft:waxed_exposed_copper_trapdoor" : { + "id" : -797, + "item" : false + }, + "minecraft:waxed_exposed_cut_copper" : { + "id" : -352, + "item" : false + }, + "minecraft:waxed_exposed_cut_copper_slab" : { + "id" : -366, + "item" : false + }, + "minecraft:waxed_exposed_cut_copper_stairs" : { + "id" : -359, + "item" : false + }, + "minecraft:waxed_exposed_double_cut_copper_slab" : { + "id" : -373, + "item" : false + }, + "minecraft:waxed_oxidized_chiseled_copper" : { + "id" : -766, + "item" : false + }, + "minecraft:waxed_oxidized_copper" : { + "id" : -446, + "item" : false + }, + "minecraft:waxed_oxidized_copper_bulb" : { + "id" : -783, + "item" : false + }, + "minecraft:waxed_oxidized_copper_door" : { + "id" : -791, + "item" : true + }, + "minecraft:waxed_oxidized_copper_grate" : { + "id" : -775, + "item" : false + }, + "minecraft:waxed_oxidized_copper_trapdoor" : { + "id" : -799, + "item" : false + }, + "minecraft:waxed_oxidized_cut_copper" : { + "id" : -447, + "item" : false + }, + "minecraft:waxed_oxidized_cut_copper_slab" : { + "id" : -449, + "item" : false + }, + "minecraft:waxed_oxidized_cut_copper_stairs" : { + "id" : -448, + "item" : false + }, + "minecraft:waxed_oxidized_double_cut_copper_slab" : { + "id" : -450, + "item" : false + }, + "minecraft:waxed_weathered_chiseled_copper" : { + "id" : -767, + "item" : false + }, + "minecraft:waxed_weathered_copper" : { + "id" : -346, + "item" : false + }, + "minecraft:waxed_weathered_copper_bulb" : { + "id" : -782, + "item" : false + }, + "minecraft:waxed_weathered_copper_door" : { + "id" : -790, + "item" : true + }, + "minecraft:waxed_weathered_copper_grate" : { + "id" : -774, + "item" : false + }, + "minecraft:waxed_weathered_copper_trapdoor" : { + "id" : -798, + "item" : false + }, + "minecraft:waxed_weathered_cut_copper" : { + "id" : -353, + "item" : false + }, + "minecraft:waxed_weathered_cut_copper_slab" : { + "id" : -367, + "item" : false + }, + "minecraft:waxed_weathered_cut_copper_stairs" : { + "id" : -360, + "item" : false + }, + "minecraft:waxed_weathered_double_cut_copper_slab" : { + "id" : -374, + "item" : false + }, + "minecraft:wayfinder_armor_trim_smithing_template" : { + "id" : 730, + "item" : true + }, + "minecraft:weathered_chiseled_copper" : { + "id" : -762, + "item" : false + }, + "minecraft:weathered_copper" : { + "id" : -342, + "item" : false + }, + "minecraft:weathered_copper_bulb" : { + "id" : -778, + "item" : false + }, + "minecraft:weathered_copper_door" : { + "id" : -786, + "item" : true + }, + "minecraft:weathered_copper_grate" : { + "id" : -770, + "item" : false + }, + "minecraft:weathered_copper_trapdoor" : { + "id" : -794, + "item" : false + }, + "minecraft:weathered_cut_copper" : { + "id" : -349, + "item" : false + }, + "minecraft:weathered_cut_copper_slab" : { + "id" : -363, + "item" : false + }, + "minecraft:weathered_cut_copper_stairs" : { + "id" : -356, + "item" : false + }, + "minecraft:weathered_double_cut_copper_slab" : { + "id" : -370, + "item" : false + }, + "minecraft:web" : { + "id" : 30, + "item" : false + }, + "minecraft:weeping_vines" : { + "id" : -231, + "item" : false + }, + "minecraft:wet_sponge" : { + "id" : -984, + "item" : false + }, + "minecraft:wheat" : { + "id" : 359, + "item" : true + }, + "minecraft:wheat_seeds" : { + "id" : 313, + "item" : true + }, + "minecraft:white_bundle" : { + "id" : 269, + "item" : true + }, + "minecraft:white_candle" : { + "id" : -413, + "item" : false + }, + "minecraft:white_candle_cake" : { + "id" : -430, + "item" : false + }, + "minecraft:white_carpet" : { + "id" : 171, + "item" : false + }, + "minecraft:white_concrete" : { + "id" : 236, + "item" : false + }, + "minecraft:white_concrete_powder" : { + "id" : 237, + "item" : false + }, + "minecraft:white_dye" : { + "id" : 436, + "item" : true + }, + "minecraft:white_glazed_terracotta" : { + "id" : 220, + "item" : false + }, + "minecraft:white_shulker_box" : { + "id" : 218, + "item" : false + }, + "minecraft:white_stained_glass" : { + "id" : 241, + "item" : false + }, + "minecraft:white_stained_glass_pane" : { + "id" : 160, + "item" : false + }, + "minecraft:white_terracotta" : { + "id" : 159, + "item" : false + }, + "minecraft:white_tulip" : { + "id" : -835, + "item" : false + }, + "minecraft:white_wool" : { + "id" : 35, + "item" : false + }, + "minecraft:wild_armor_trim_smithing_template" : { + "id" : 721, + "item" : true + }, + "minecraft:wind_charge" : { + "id" : 277, + "item" : true + }, + "minecraft:witch_spawn_egg" : { + "id" : 479, + "item" : true + }, + "minecraft:wither_rose" : { + "id" : -216, + "item" : false + }, + "minecraft:wither_skeleton_skull" : { + "id" : -965, + "item" : false + }, + "minecraft:wither_skeleton_spawn_egg" : { + "id" : 492, + "item" : true + }, + "minecraft:wither_spawn_egg" : { + "id" : 536, + "item" : true + }, + "minecraft:wolf_armor" : { + "id" : 741, + "item" : true + }, + "minecraft:wolf_spawn_egg" : { + "id" : 466, + "item" : true + }, + "minecraft:wood" : { + "id" : 781, + "item" : true + }, + "minecraft:wooden_axe" : { + "id" : 335, + "item" : true + }, + "minecraft:wooden_button" : { + "id" : 143, + "item" : false + }, + "minecraft:wooden_door" : { + "id" : 384, + "item" : true + }, + "minecraft:wooden_hoe" : { + "id" : 354, + "item" : true + }, + "minecraft:wooden_pickaxe" : { + "id" : 334, + "item" : true + }, + "minecraft:wooden_pressure_plate" : { + "id" : 72, + "item" : false + }, + "minecraft:wooden_shovel" : { + "id" : 333, + "item" : true + }, + "minecraft:wooden_slab" : { + "id" : 768, + "item" : true + }, + "minecraft:wooden_sword" : { + "id" : 332, + "item" : true + }, + "minecraft:wool" : { + "id" : 749, + "item" : true + }, + "minecraft:writable_book" : { + "id" : 544, + "item" : true + }, + "minecraft:written_book" : { + "id" : 545, + "item" : true + }, + "minecraft:yellow_bundle" : { + "id" : 266, + "item" : true + }, + "minecraft:yellow_candle" : { + "id" : -417, + "item" : false + }, + "minecraft:yellow_candle_cake" : { + "id" : -434, + "item" : false + }, + "minecraft:yellow_carpet" : { + "id" : -600, + "item" : false + }, + "minecraft:yellow_concrete" : { + "id" : -631, + "item" : false + }, + "minecraft:yellow_concrete_powder" : { + "id" : -712, + "item" : false + }, + "minecraft:yellow_dye" : { + "id" : 432, + "item" : true + }, + "minecraft:yellow_glazed_terracotta" : { + "id" : 224, + "item" : false + }, + "minecraft:yellow_shulker_box" : { + "id" : -616, + "item" : false + }, + "minecraft:yellow_stained_glass" : { + "id" : -676, + "item" : false + }, + "minecraft:yellow_stained_glass_pane" : { + "id" : -646, + "item" : false + }, + "minecraft:yellow_terracotta" : { + "id" : -727, + "item" : false + }, + "minecraft:yellow_wool" : { + "id" : -558, + "item" : false + }, + "minecraft:zoglin_spawn_egg" : { + "id" : 526, + "item" : true + }, + "minecraft:zombie_head" : { + "id" : -966, + "item" : false + }, + "minecraft:zombie_horse_spawn_egg" : { + "id" : 496, + "item" : true + }, + "minecraft:zombie_pigman_spawn_egg" : { + "id" : 475, + "item" : true + }, + "minecraft:zombie_spawn_egg" : { + "id" : 474, + "item" : true + }, + "minecraft:zombie_villager_spawn_egg" : { + "id" : 505, + "item" : true + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockDataVersion.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockDataVersion.java index a80378e..8f0228c 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockDataVersion.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockDataVersion.java @@ -76,6 +76,7 @@ public class BedrockDataVersion implements Comparable { public static final BedrockDataVersion V1_21_30 = register(729, 9, new Version(1, 21, 30)); public static final BedrockDataVersion V1_21_40 = register(748, 9, new Version(1, 21, 40)); public static final BedrockDataVersion V1_21_50 = register(766, 9, new Version(1, 21, 50)); + public static final BedrockDataVersion V1_21_60 = register(776, 9, new Version(1, 21, 60)); private final int protocolVersion; private final int storageVersion; diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockEncoders.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockEncoders.java index 4f6034f..30d159a 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockEncoders.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/BedrockEncoders.java @@ -106,6 +106,11 @@ public class BedrockEncoders { com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.reader.LevelReader::new, com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.writer.LevelWriter::new ); + register( + BedrockDataVersion.V1_21_60, + com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.reader.LevelReader::new, + com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.writer.LevelWriter::new + ); } /** diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateGroups.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateGroups.java index afcbdfb..2d6eb46 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateGroups.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateGroups.java @@ -280,10 +280,18 @@ public class BedrockStateGroups { .state("triggered_bit", VanillaBlockStates.TRIGGERED, BedrockStateTypes.BOOL) .state("orientation", VanillaBlockStates.ORIENTATION, BedrockStateTypes.ORIENTATION) .build(); - public static final StateMappingGroup CREAKING_HEART = new StateMappingGroup.Builder() - .state("pillar_axis", VanillaBlockStates.AXIS, BedrockStateTypes.AXIS) - .state("active", VanillaBlockStates.CREAKING, BedrockStateTypes.CREAKING) - .state("natural", VanillaBlockStates.NATURAL, BedrockStateTypes.BOOL) + public static final VersionedStateMappingGroup CREAKING_HEART = new VersionedStateMappingGroup.Builder() + .defaults(new StateMappingGroup.Builder() + .state("pillar_axis", VanillaBlockStates.AXIS, BedrockStateTypes.AXIS) + .state("active", VanillaBlockStates.CREAKING, BedrockStateTypes.CREAKING_BOOL) + .state("natural", VanillaBlockStates.NATURAL, BedrockStateTypes.BOOL) + .build()) + // 1.21.60 added creaking_heart_state instead of active + .version(new Version(1, 21, 60), new StateMappingGroup.Builder() + .state("pillar_axis", VanillaBlockStates.AXIS, BedrockStateTypes.AXIS) + .state("creaking_heart_state", VanillaBlockStates.CREAKING, BedrockStateTypes.CREAKING) + .state("natural", VanillaBlockStates.NATURAL, BedrockStateTypes.BOOL) + .build()) .build(); public static final StateMappingGroup CROP = new StateMappingGroup.Builder() .state("growth", VanillaBlockStates.AGE_7, BedrockStateTypes.AGE_7) @@ -327,6 +335,14 @@ public class BedrockStateGroups { .state("open_bit", VanillaBlockStates.OPEN, BedrockStateTypes.BOOL) .defaultOutput(VanillaBlockStates.POWERED, Bool.FALSE) .build()) + // 1.21.60 migrated direction to minecraft:cardinal_direction + .version(new Version(1, 21, 60), new StateMappingGroup.Builder() + .state("minecraft:cardinal_direction", VanillaBlockStates.FACING_HORIZONTAL, BedrockStateTypes.CARDINAL_DIRECTION_DOOR) + .state("upper_block_bit", VanillaBlockStates.HALF, BedrockStateTypes.HALF) + .state("door_hinge_bit", VanillaBlockStates.DOOR_HINGE, BedrockStateTypes.HINGE) + .state("open_bit", VanillaBlockStates.OPEN, BedrockStateTypes.BOOL) + .defaultOutput(VanillaBlockStates.POWERED, Bool.FALSE) + .build()) .build(); public static final StateMappingGroup DOUBLE_BLOCK = new StateMappingGroup.Builder() .state("upper_block_bit", VanillaBlockStates.HALF, BedrockStateTypes.HALF) @@ -373,12 +389,21 @@ public class BedrockStateGroups { public static final StateMappingGroup FARMLAND = new StateMappingGroup.Builder() .state("moisturized_amount", VanillaBlockStates.MOISTURE, BedrockStateTypes.MOISTURE) .build(); - public static final StateMappingGroup FENCE_GATE = new StateMappingGroup.Builder() - .state("direction", VanillaBlockStates.FACING_HORIZONTAL, BedrockStateTypes.CARDINAL_DIRECTION_LEGACY) - .state("in_wall_bit", VanillaBlockStates.IN_WALL, BedrockStateTypes.BOOL) - .state("open_bit", VanillaBlockStates.OPEN, BedrockStateTypes.BOOL) - .defaultOutput(VanillaBlockStates.POWERED, Bool.FALSE) - .build(); + public static final VersionedStateMappingGroup FENCE_GATE = new VersionedStateMappingGroup.Builder() + .defaults(new StateMappingGroup.Builder() + .state("direction", VanillaBlockStates.FACING_HORIZONTAL, BedrockStateTypes.CARDINAL_DIRECTION_LEGACY) + .state("in_wall_bit", VanillaBlockStates.IN_WALL, BedrockStateTypes.BOOL) + .state("open_bit", VanillaBlockStates.OPEN, BedrockStateTypes.BOOL) + .defaultOutput(VanillaBlockStates.POWERED, Bool.FALSE) + .build()) + // 1.21.60 migrated direction to minecraft:cardinal_direction + .version(new Version(1, 21, 60), new StateMappingGroup.Builder() + .state("minecraft:cardinal_direction", VanillaBlockStates.FACING_HORIZONTAL, BedrockStateTypes.CARDINAL_DIRECTION) + .state("in_wall_bit", VanillaBlockStates.IN_WALL, BedrockStateTypes.BOOL) + .state("open_bit", VanillaBlockStates.OPEN, BedrockStateTypes.BOOL) + .defaultOutput(VanillaBlockStates.POWERED, Bool.FALSE) + .build() + ).build(); public static final StateMappingGroup FIRE = new StateMappingGroup.Builder() .state("age", VanillaBlockStates.AGE_15, BedrockStateTypes.AGE_15) .defaultOutput(VanillaBlockStates.EAST, Bool.FALSE) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateTypes.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateTypes.java index 2b21356..a0cd321 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateTypes.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/base/resolver/identifier/BedrockStateTypes.java @@ -259,6 +259,12 @@ public class BedrockStateTypes { .mapping("south", FacingDirectionHorizontal.SOUTH) .mapping("west", FacingDirectionHorizontal.WEST) .build(); + public static final TypeMapping CARDINAL_DIRECTION_DOOR = new TypeMapping.Builder() + .mapping("north", FacingDirectionHorizontal.WEST) + .mapping("east", FacingDirectionHorizontal.NORTH) + .mapping("south", FacingDirectionHorizontal.EAST) + .mapping("west", FacingDirectionHorizontal.SOUTH) + .build(); public static final TypeMapping CARDINAL_DIRECTION_LEGACY = new TypeMapping.Builder() .mapping(0, FacingDirectionHorizontal.SOUTH) .mapping(1, FacingDirectionHorizontal.WEST) @@ -312,11 +318,16 @@ public class BedrockStateTypes { .mapping(0, CoralFanDirection.EAST_WEST) .mapping(1, CoralFanDirection.NORTH_SOUTH) .build(); - public static final TypeMapping CREAKING = new TypeMapping.Builder() + public static final TypeMapping CREAKING_BOOL = new TypeMapping.Builder() .mapping(false, Creaking.DORMANT) .mapping(false, Creaking.DISABLED) .mapping(true, Creaking.ACTIVE) .build(); + public static final TypeMapping CREAKING = new TypeMapping.Builder() + .mapping("uprooted", Creaking.DISABLED) + .mapping("dormant", Creaking.DORMANT) + .mapping("awake", Creaking.ACTIVE) + .build(); public static final TypeMapping DELAY = new TypeMapping.Builder() .mapping(0, Delay._1) .mapping(1, Delay._2) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ChunkReader.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ChunkReader.java new file mode 100644 index 0000000..487fdeb --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ChunkReader.java @@ -0,0 +1,12 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.reader; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.bedrock.base.resolver.BedrockResolvers; +import com.hivemc.chunker.conversion.intermediate.column.chunk.ChunkerChunk; +import com.hivemc.chunker.conversion.intermediate.world.Dimension; + +public class ChunkReader extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.reader.ChunkReader { + public ChunkReader(BedrockResolvers resolvers, Converter converter, Dimension dimension, ChunkerChunk chunk) { + super(resolvers, converter, dimension, chunk); + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ColumnReader.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ColumnReader.java new file mode 100644 index 0000000..2826c13 --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/ColumnReader.java @@ -0,0 +1,20 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.reader; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.bedrock.base.reader.BedrockChunkReader; +import com.hivemc.chunker.conversion.encoding.bedrock.base.resolver.BedrockResolvers; +import com.hivemc.chunker.conversion.intermediate.column.chunk.ChunkCoordPair; +import com.hivemc.chunker.conversion.intermediate.column.chunk.ChunkerChunk; +import com.hivemc.chunker.conversion.intermediate.world.Dimension; +import org.iq80.leveldb.DB; + +public class ColumnReader extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.reader.ColumnReader { + public ColumnReader(BedrockResolvers resolvers, Converter converter, DB database, Dimension dimension, ChunkCoordPair columnCoords) { + super(resolvers, converter, database, dimension, columnCoords); + } + + @Override + public BedrockChunkReader createChunkReader(ChunkerChunk chunk) { + return new ChunkReader(resolvers, converter, dimension, chunk); + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/LevelReader.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/LevelReader.java new file mode 100644 index 0000000..d995b15 --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/LevelReader.java @@ -0,0 +1,26 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.reader; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.base.Version; +import com.hivemc.chunker.conversion.encoding.bedrock.base.reader.BedrockWorldReader; +import com.hivemc.chunker.conversion.intermediate.column.chunk.ChunkCoordPair; +import com.hivemc.chunker.conversion.intermediate.column.chunk.RegionCoordPair; +import com.hivemc.chunker.conversion.intermediate.world.Dimension; +import com.hivemc.chunker.nbt.tags.collection.CompoundTag; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.File; +import java.util.Map; +import java.util.Set; + +public class LevelReader extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.reader.LevelReader { + public LevelReader(File inputDirectory, Version inputVersion, Converter converter) { + super(inputDirectory, inputVersion, converter); + } + + @Override + public BedrockWorldReader createWorldReader(Map> presentRegions, Dimension dimension) { + return new WorldReader(resolvers, converter, database, presentRegions, dimension); + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/WorldReader.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/WorldReader.java new file mode 100644 index 0000000..f23affe --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/reader/WorldReader.java @@ -0,0 +1,23 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.reader; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.bedrock.base.reader.BedrockColumnReader; +import com.hivemc.chunker.conversion.encoding.bedrock.base.resolver.BedrockResolvers; +import com.hivemc.chunker.conversion.intermediate.column.chunk.ChunkCoordPair; +import com.hivemc.chunker.conversion.intermediate.column.chunk.RegionCoordPair; +import com.hivemc.chunker.conversion.intermediate.world.Dimension; +import org.iq80.leveldb.DB; + +import java.util.Map; +import java.util.Set; + +public class WorldReader extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.reader.WorldReader { + public WorldReader(BedrockResolvers resolvers, Converter converter, DB database, Map> presentRegions, Dimension dimension) { + super(resolvers, converter, database, presentRegions, dimension); + } + + @Override + public BedrockColumnReader createColumnReader(ChunkCoordPair worldChunkCoords) { + return new ColumnReader(resolvers, converter, database, dimension, worldChunkCoords); + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ChunkWriter.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ChunkWriter.java new file mode 100644 index 0000000..511de05 --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ChunkWriter.java @@ -0,0 +1,13 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.writer; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.bedrock.base.resolver.BedrockResolvers; +import com.hivemc.chunker.conversion.intermediate.column.ChunkerColumn; +import com.hivemc.chunker.conversion.intermediate.world.Dimension; +import org.iq80.leveldb.DB; + +public class ChunkWriter extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.writer.ChunkWriter { + public ChunkWriter(Converter converter, BedrockResolvers resolvers, DB database, Dimension dimension, ChunkerColumn chunkerColumn) { + super(converter, resolvers, database, dimension, chunkerColumn); + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ColumnWriter.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ColumnWriter.java new file mode 100644 index 0000000..e4c8701 --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/ColumnWriter.java @@ -0,0 +1,25 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.writer; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.bedrock.base.resolver.BedrockResolvers; +import com.hivemc.chunker.conversion.encoding.bedrock.base.writer.BedrockChunkWriter; +import com.hivemc.chunker.conversion.encoding.bedrock.base.writer.BedrockWorldWriter; +import com.hivemc.chunker.conversion.intermediate.column.ChunkerColumn; +import com.hivemc.chunker.conversion.intermediate.world.Dimension; +import org.iq80.leveldb.DB; + +public class ColumnWriter extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.writer.ColumnWriter { + public ColumnWriter(BedrockWorldWriter parent, Converter converter, BedrockResolvers resolvers, DB database, Dimension dimension) { + super(parent, converter, resolvers, database, dimension); + } + + @Override + protected byte getBlendingVersion() { + return 7; + } + + @Override + public BedrockChunkWriter createChunkWriter(ChunkerColumn column) { + return new ChunkWriter(converter, resolvers, database, dimension, column); + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/LevelWriter.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/LevelWriter.java new file mode 100644 index 0000000..18fb7dc --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/LevelWriter.java @@ -0,0 +1,20 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.writer; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.base.Version; +import com.hivemc.chunker.conversion.encoding.bedrock.base.writer.BedrockWorldWriter; +import com.hivemc.chunker.conversion.intermediate.level.ChunkerLevelSettings; +import com.hivemc.chunker.nbt.tags.collection.CompoundTag; + +import java.io.File; + +public class LevelWriter extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.writer.LevelWriter { + public LevelWriter(File outputFolder, Version version, Converter converter) { + super(outputFolder, version, converter); + } + + @Override + public BedrockWorldWriter createWorldWriter() { + return new WorldWriter(outputFolder, converter, resolvers, database); + } +} diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/WorldWriter.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/WorldWriter.java new file mode 100644 index 0000000..73bf96a --- /dev/null +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_21_60/writer/WorldWriter.java @@ -0,0 +1,20 @@ +package com.hivemc.chunker.conversion.encoding.bedrock.v1_21_60.writer; + +import com.hivemc.chunker.conversion.encoding.base.Converter; +import com.hivemc.chunker.conversion.encoding.bedrock.base.resolver.BedrockResolvers; +import com.hivemc.chunker.conversion.encoding.bedrock.base.writer.BedrockColumnWriter; +import com.hivemc.chunker.conversion.intermediate.world.Dimension; +import org.iq80.leveldb.DB; + +import java.io.File; + +public class WorldWriter extends com.hivemc.chunker.conversion.encoding.bedrock.v1_21_50.writer.WorldWriter { + public WorldWriter(File outputFolder, Converter converter, BedrockResolvers resolvers, DB database) { + super(outputFolder, converter, resolvers, database); + } + + @Override + public BedrockColumnWriter createColumnWriter(Dimension dimension) { + return new ColumnWriter(this, converter, resolvers, database, dimension); + } +} From fc3ba94ac919781911812ac4a2ffcf390749b2d7 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Mon, 20 Jan 2025 07:17:51 +0000 Subject: [PATCH 10/19] Bump com.github.ben-manes.caffeine:caffeine from 3.1.8 to 3.2.0 Bumps [com.github.ben-manes.caffeine:caffeine](https://github.com/ben-manes/caffeine) from 3.1.8 to 3.2.0. - [Release notes](https://github.com/ben-manes/caffeine/releases) - [Commits](https://github.com/ben-manes/caffeine/compare/v3.1.8...v3.2.0) --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 9dce82f..4ec45fb 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,7 +3,7 @@ [versions] picocli = "4.7.6" -caffeine = "3.1.8" +caffeine = "3.2.0" gson = "2.11.0" guava = "33.4.0-jre" leveldb = "1.0.1" From 4ae4c6223a0ac279ad19f7b19d65f320a563adc8 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Thu, 23 Jan 2025 10:57:21 +0000 Subject: [PATCH 11/19] Filter the files which are copied when modifying a Java world --- app/electron/src/session.js | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/app/electron/src/session.js b/app/electron/src/session.js index 835c52c..3832de1 100644 --- a/app/electron/src/session.js +++ b/app/electron/src/session.js @@ -661,7 +661,34 @@ export class Session { await fs.mkdir(worldOutputPath); if (copyNbt) { - await fs.copy(worldInputPath, worldOutputPath); + // Copy all the files but exclude level.dat, region, entities, data/map_.dat/idcounts.dat + await fs.copy(worldInputPath, worldOutputPath, { + filter: (src) => { + let relativePath = path.relative(worldInputPath, src); + let parts = relativePath.split(path.sep); + + // Don't include any block data / entities (these are passed through Chunker) + if (parts.includes("region") || parts.includes("entities")) { + return false; + } + + // Don't include in-game map data + if (parts.includes("data") && parts.length === 2) { + let fileName = parts[1]; + if (fileName === "idcounts.dat" || fileName.startsWith("map_") && fileName.endsWith(".dat")) { + return false; + } + } + + // Don't include level.dat / session.lock + if (parts.length === 1 && (parts[0] === "level.dat" || parts[0] === "session.lock")) { + return false; + } + + // Otherwise include the file + return true; + } + }); } // Process request From fcbf70008ac829bb09374d15e4feb6dcbd56b867 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Thu, 23 Jan 2025 07:40:27 +0000 Subject: [PATCH 12/19] Bump org.jetbrains:annotations from 26.0.1 to 26.0.2 Bumps [org.jetbrains:annotations](https://github.com/JetBrains/java-annotations) from 26.0.1 to 26.0.2. - [Release notes](https://github.com/JetBrains/java-annotations/releases) - [Changelog](https://github.com/JetBrains/java-annotations/blob/master/CHANGELOG.md) - [Commits](https://github.com/JetBrains/java-annotations/compare/26.0.1...26.0.2) --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 4ec45fb..88b012d 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,7 +10,7 @@ leveldb = "1.0.1" leveldb-api = "1.0.1" fastutil = "8.5.15" lz4 = "1.3.0" -jetbrains-annotations = "26.0.1" +jetbrains-annotations = "26.0.2" # JUnit junit = "5.11.4" From cc2cf3384a43aff25cfa07d6bbde884ee3ae0cb8 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Thu, 23 Jan 2025 11:03:52 +0000 Subject: [PATCH 13/19] Upgrade `node` to `23.6.1` and `npm` to `11.0.0` --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a39a614..bb9e1a6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -10,8 +10,8 @@ dependencies { } node { - version.set("23.3.0") - npmVersion.set("10.9.2") + version.set("23.6.1") + npmVersion.set("11.0.0") download.set(true) } From 72761eba79c089cfb61ce22cd74d5af3db8a96a1 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Thu, 23 Jan 2025 11:11:13 +0000 Subject: [PATCH 14/19] Upgrade `gradle-wrapper` to `8.12` --- gradle/wrapper/gradle-wrapper.jar | Bin 43453 -> 43583 bytes gradle/wrapper/gradle-wrapper.properties | 2 +- gradlew | 5 ++++- gradlew.bat | 2 ++ 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index e6441136f3d4ba8a0da8d277868979cfbc8ad796..a4b76b9530d66f5e68d973ea569d8e19de379189 100644 GIT binary patch delta 12612 zcmY+pRa6|n(lttO3GVLh?(Xh3xVuAe26uONcL=V5;I6?T_zdn2`Oi5I_gl9gx~lft zRjVKRp?B~8Wyrx5$mS3|py!Njy{0Wt4i%@s8v88pK z6fPNA45)|*9+*w5kcg$o)}2g}%JfXe6l9ig4T8ia3Hlw#3f^fAKW63%<~GZJd-0YA z9YjleCs~#Y?V+`#nr+49hhsr$K$k!lg}AZDw@>2j=f7t~5IW6#K|lAX7|^N}lJ)I!km`nrwx> z))1Es16__aXGVzQM0EC8xH+O!nqTFBg9Ci{NwRK*CP<6s`Gq(~#lqb(zOlh6ZDBK* zr$|NDj^s6VanrKa+QC;5>twePaexqRI%RO~OY075y?NN90I|f^(P# zF=b>fZ73b5JzD`#GC3lTQ_B3lMeBWgQUGYnFw*HQC}^z{$6G4j(n4y-pRxPT(d2Wgb%vCH(?+t&Pj z)QM`zc`U`+<~D+9E{4Uj2kc#*6eZMU$4Oj6QMfA^K!rbl`iBix=2sPrs7j@aqIrE zTaZJ2M09>rp$mgyUZ!r2$UK{+DGqgl`n;*qFF~M(r#eh`T{MO?2&j?xgr8FU$u3-` zhRDc_I23LL4)K&xg$^&l-W=!Jp-P(_Ie07q>Je;QLxi8LaEc%;WIacJD_T69egF?7 z;I_Sg_!+qrur8$Hq4grigaiVF>U7uWJ@Hkd&%kmFnQN-P^fq0gB1|uRt!U#X;DnlV zo?yHWTw7g5B;#xxY`adhi4yZn@f(7-Xa(J6S=#d@&rlFw!qfvholE>MEb|VWn^g}G zMSrK&zQ^vDId&ojL!{%{o7?s{7;{+u%L{|tar(gp?Uxq3p?xAysB>0E$eG#$tvkk9 z2Q2gEP17{U6@UD*v({5MP-CTZfvWMItVjb4c;i~WLq&{?Q1(koX&vt7+$z}10{^Id z{KDjGi0JpD7@;~odF__0m|p;5rIrHidOP9^mwKe#-&JX-X@acc)06G{LO1Wu)#gvZ za~y9(fhA%UwkDOVU1LBJ`0ROE z4&)dJKK%mG@+CIm?+wt9f~@xIMr8}UH*K1j| z0pppo{7gv3v{URwxVMeg>Ps!L5IKxm zjac2egjgb0vH5i75$s|sY_RYec#>faqJk|AGgV;v=^%BM(^p{p;(^SVt-88G9f!q; z>p}9E4^f0=01S2pQBE4}9YqE%TV)*hlU^8k9{&=K76+*Ax^r=AkBb%OCP^P2nm0Ri z;D-|Zk?gGeU<12ti2CnPVNA(Pb)02+r|&yTWW-OJO7 zNLb0pps6aN?A~NJp5kj{{IOlf!5KWMleV@-hYLift)D>-7K+tgs=7Ake}oBnIy-y1 z(Hn@Hjw=_(x>dO5ysQsrnE%A*bk0K<-j{1Yqz@#n#jOL^AzCr#wR|WYzqk6i7v)Lf zkXdKxzuu20aP{Tbg$(+9&oh7cd(Uoqqf<#ujb$q4sZ~gxFbQfS zS)kNklyL*{2AELgjZ(LBu*>S(oH5AaJ;YiB@;l@=O%F6B?oanzoYRM^fQ9-<~^=3$H0g^JPMLQo@SZ@QuNvy)tyJ)LSj`+()#fy?{aV4Yg^7dlQ7AQM^3GLCR2dAFR zJjtfKiVqF`l-H_fz0HD|9g>)pOxn}k!vdZ=DO!7Sikm{Z%P6BrRkBS6W?ZB5W&7rT z@uYpf@M@a!z7H&o@-yrcCL^Ff3e7p3T`R9p?@o-acXmbTSa0>ZANzCSgovsd%;i$| zVus`not!oL#(W`L-!9w0jdaECaG4hk{V7IOs676ZquZH~0TX5hDq|)x z6T497l|E?f4)LA>j=S8}b$0LS=I4h|hUFJYJODT8Li@#6kF$k0)@*l{RnM1HQ%?VT ze-Pqlc!~t(oumVC*?5fwR;P6u{tHaZ~*LlD;B)4f? z?lpWfa2P@)g57flVl83Ej%P`2)gGyaPjhvD(%i~{`2b>#3!+y&` z!2nuwHMFA-zUY}f1^0B8<`N)Gr=A4TS@b1qykmd0Pq{?r)+1^^+D(=xasb^Tf!oK9 zBLL+*p6M_#ufgLzgq1zcSwZsZnQWFLC3`Yxdg-2=*tT`J9nrfYt)RF)YryBf8_gW{ zvKbB+oZLehfT)S#<|y1)E0hW^?+AnqPXq9Hu;v3dsMGdr{SVyF63;K<8VcgI#~}1i zLYSBL0K;RTT(;>2x=*!1Di9w0mwr;`CN}kM65|Ay{~z}_^JKOsRaN<~#9O^iiW<5P zYN7r~HV!#Nz~IZU`P>1Xe%4f~K}KcF#X&5kO*G}-)74S*tQ8CietdPcA1Yl;S=Mr# z`#MYY!{s^uo=jn7;k6O%(}fN+*0cWMpt~#n9DR<3NyU?+3D^AgI}S)Cu-Tljg`VY} zX1=fq$?8$DtOeGxE6f8lbS_6Q3C4+LDTO$}_IpM$Xv<|QSC%+Oll^q$y`7o@jD{dp zNDl|&X)r7wETa-#h*d`KXntxI(Y{vLha{$0i7@G8xx^m=c<{lJ9?p-i!^W{%j7-oo z0W^SzZ^(Wkyz*We{lEn%Yhu-ycUOHtrRiVJL4~&S91*D0MrLu}Q>v-Mc?GcWfpyz% zX|UvcN@krFO#@v|CtYM}g|=L3%aMo$E5<@CM%c*;?u>LOTz00@+dt1{yg1y=$h+{|D17U}$*^fE^H&8b431EUE z<9tv0V_#%#&1N#j7AKCj!tTK@J%oFW*ESW<(#Gl#Xs%v<@AitI?s92nLzm<)w3Wkkom1f$gcdUi%g_*jofy&}N#luL<$GVIe{iQkQ)sIHVy zBgItnPBFamrv6Kb{eE($Q(f`ZPeW!Hm%Y@F*OF1sKB{Yy|C>WEv_mfvv-N-jh)B-5 z4a!1WcT@9a+hGaBrc~sz=>G?Q!*Zp^JFRUvBMyNR1;`)j$RhH$6gEyVKhd$&K-CFT zXaWC-Y=fyOnqT84iMn9o5oLEOI(_3fk!W^8-74|q1QhQ|CmT0i=b;6Z3u?E{p7V{? z;f#Q-33!L+4&QQcZ~GAqu$NS{M;u%`+#9=7^Oa5PKvCCCWNG_~l(CidS!+xr-*gg{ z$UQ`_1tLT_9jB=Hckkwu>G{s0b0F4bnR7GibmHo?>TR&<3?D;5Fb#gd8*wYa$$~ar z7epl1qM)L{kwiNjQk}?)CFpNTd?0wAOUZ|gC{Ub|c-7h~+Rm(JbdoRe!RNVBQi!M8 z+~U6E2X&KSA*T6KJvsqwqZl#1&==Dm(#b^&VAKQ>7ygv*Fyr;)q9*^F@dCTg2g!w~ z%hg)UXAUyIpIbLXJv1nZX+a_C)BOH2hUim|>=JHCRf(!dtTidb&*~I!JrfRe+PO>w z@ox$G2a3i9d_N9J=|2$y2m-P&#PTNwe!oLBZFs;z|F5kXvBDn<)WwE0E3$ow=zg3R zK(9;sf0t;VEV3@gAg7jRtnj%-6O@!Hvg*;XcUAw}!=2*aErvB(eQIm(-UGmq^J=XN zTqJo$Y|WKo^HlBF3BXJrA#}7ZLg=r*w`I*~Ix`o&2k8^(0mt8Rp=A>F`&gehhp@Jy z^e^#B2!~$LvNCKugg)8)-G%&THdk~kfextilegP9?#C#()F59U$&eo(h|5>ceo*Em z{PEE79T$YP|Kr7K`WBHbtQwyxFkCl6xX&+oUf90B5xoi3_5KHHCyEE*oPbOQkfMz& z6^hT8_NXd2iWk{q9IKae1{_7hMPH8I7_BMtVOM4 z6jm?E0QJOn$qrgsJ`9w##GB9?G})-GXSQo6(tYS(Q0-Ct$co?Zzl0?NHsDRron?;_ zZZgQg)%XW>P?8_&zoGuF(>Och2kEJXsu1_X&~w87x!b z>~h!a>e7{`p@+#hXF88wI*JeWRZ;J4ev4<}HWf|Z;(7$E!S5l9wzBHFe>^I{2`a;a)QnAwa2xv1e(bq$<}!8o^ofGvYpk7dBR+`*%iE;hUY5 zaHF}OjGO9r*{%lmcK^uFiTHgoUD`^9Nx@~;Bg!V* zuuJ&ti{DQiq7RyJAR94wem{}cPK1J(Yxnn_{=>?USqz-~&QXRStS^s-7TksZ$AEI! z#og36s3JGtGU{CnDHRFtipFqvrE*gw7_K@NN0h+ItTq@4fqN!HeQU1y7*X?9+IfZT4Vxebpt z%#VzgdDK~-&+=Z*#>=n#XUhNvBZp3=Cr41jMqwJkHLf3L7Vm~V#GgJ(Jpii~PmJ#s zA7Ft!{xD@z>9DUb4JbiUBdNEcU4BO$651iN*mp*f)HbRRM`Cx5cR?5IfEcU{IZWwf zz(M6CDv)>xa3x}K6%tP^i15P1&&DOLK=k~+jNR$UK3frSl+|PjSC-dBItvD~LL! z>_g(YYdO4k(5EbPOw+v+;G7~jYm>F@Ai|o`gs%F)F8tDz$dl7Q%aCe|v|$UkAul_R zNlA-beBX^IJU?kgS`E$it7nF4DaI!SJAGq)2P&Few(-|tp z?K+%D3e4{pfkayrcbm0ftu6Ol2ZzdKM+4i!hNP3NRL`EvvZJ3yvNr2MV%igZ4kj``Qrdb_OI$7jWP z;l0DYf&0(-*QcP5zrP`HVznW+SbH63Qx$7_9~NjRNg7eKqI!UJ=XH`g^=t8GiFTu( z?2L{JKEu%jJx&XjNzU(*!ZNmL1@RlJA0G$2_LrAb_7lmjil(GSlSM zwTes`m+3R;3#N~Xg#9owh3ycXV8@ZlaY_16kpPFA={721b~URO4HD3sp%fmkZM}k) zZB0#)kP=RkNB~R-MCk8aljG_bagt4vIb~8)BV%(b8_;)&Kf9GX+%O_cNG|(D$!3&D zL(I8}*LqN5NntipFlN13=`D>6!{D@CFMBH0kW3=HccJV+xW~|$qeFR5i-2{X+iWMu zI2$gepQ)H_B%ip_BlWOQ*|pErXs|4ir{IHccgaIJ84irE{?+$KDABXr&f`jB^V-c% z$$u`uU1YB^{<+UN2cNg#7&0bz@yF?5>j|;)5&IV3wIQp58X#OE-M^$HdyvL|Um5t? zhZlAG!Mz%XkUe3t471JM*Yur}o30vzu6RN7gJyNcf!IItsDO730mcJ*O!~V``y5=3 zNJGp34DZ}wd1H6V`Uuy%es>BiO_aE-S8jzir#$& zyk)@2a5tP$@g%jW^b^JGdo)X@Q%sE`^lDQmY9m%uDFpPX`w9%=yQ+nneMm#OaXcD` z9}{tn5A2b2z9783vL2_jSao?uxJhWJoq%47*RafM4o0@gY(p)F>qT4^XM5GLzV#6j zC+HoGhAne7o_w{WUo(B++z7lU3Y0k1rYv9|TSv0vR-Du(5=VakbbelgZTeDn+a_Wv zq_j-^+Qz1WAl;Zg>ahX|CERbX1V%B!hTKN?M}fGoA07M(WU&NfT&TmN`P@56U2 z^)vLDs|Ln~0iTtn-?KTeQl@T&bskJFuTUS!m+$CS9vnd}8(UMO|Kv6TCfGN9NUu&4 zL{)GTxPq>fwsJ~aU=4Qhuq8*RzDsP(LZh$BHezq&9gK$IS<|DYbm})$QTGCS6T;Dr zEkLct!b+#<1r9OKG@P!f1wm8>=Nz!7OzJm!g<+`?N3;YaA3(P@EL=(sTaRMDD!c8=-XN^4BXp(eVkj$NmEMYPP>YJ4bJ3yUud z<3BeJAJ$6z^TuywnfH5lv#$lgwraNw{IV=tIznPH1DT`v-5yS=!)J<}xxl}uZf9azA2A97Haf!;<3y01hlw?dWNEv@TLi1s-mO4vmIT%O_42nS z$VRWrs9NngqRRkWAnWkn%`Rw@?wH|)7XL`EL5EZu$qyJW31&CB^T_)qwIv!{;E_6 zo-9XAryQRlk-O0>o#-SZO>|6OYq;}<*>Wu1AsVRiXY4f8qb;+sItv3AyS!4Ry+q}) zA!pAB|BmC;=RIOk^^vlsEH(!Q!7_1FK~ZB2err*o!+b(r=m1b?$6d!%zmN+69LXnT z&gRmM+n_R-F@sT*IYv0_mGPvur!u`iWbQO7SqiGFLeY&yga zf`lM&B74FA2C?N@8_z652fjhBEoDUKbP8hL{0{HAF%qDo7)o3=3rg#6)T7%%5^wl% z9R0*S*<~>nzYOdQk2l`9h#t+gJy_xujw6xjV(8S<_DbVg61&pT%Hi42l%D73G?adn znB%UdNM0p}lEF-P2%TAMam2zpQev71e>a$$%i+r~b+D9G9pF|oY_*(-u*89oKsXLY+UIbqq)MQ%(GYS{(*n_S_*RN$*~`zUtab%0aKwhx znc)Yo?{xq1sJCgQD)TeTci1ucvbez9q=A72H(-SB18Kl&6^vHV8^i!p@>iF!DIw17 z+8Q)TNisB7>pwyww4y)yJx*wX6SJO78eLBC-ar1+k$Z9fy;wBD|3kzI{<+l*>PSY^ z_?nLOZaeWbU@C3hfK?X;Di*8CHCPkx2qco6(ZyJdqSzp^TJ_5Lpa0UP{Gy+!b0Lr% z@xYxSjUKoY6L#>$qx~KD$-0=|OF7zhVP~ntMgEALYPIfhj@+ z!;JJ7te>CcovruwHsJH6Lta$nm|%^C@=V-rmhU{+I~0(|XHQ9jt@L7pb{gx#{4r!) zg($FyFTslcgu(~6lYr$nW?)%*l#VJ=R-jxK(x=t1bWlu(nL66T#qj%3aZ@uVhy}Co zDU_q61DD5FqqJ*#c|(M5tV)XBN?Ac^12*q)VN4yKPJ|#==S_`_QD9|0ls!`2)SwuHDRA_OfXQDq3%qW&MZB}Z!=k-9xqev8jHz(H z{^D@cIB~QiK>~wa)A&^Ll^Wi6QgCzU;iv-BHsLBs zH7=jN%|>0S`SjP%M&AF1PNVDp_FZ?2Bm@7`DC&v(pYrw!!yD#4 z6+<=HS0Ln6MhoKxF<%~H`y20{vf#pxh=;j{zY381gvAFekgG|>G1zo8$&az{V=;JR zy_puF4$L$?EMhT?;TpQoR*j16ll`#AS4e96C}yp_aGKkBe?1H|k_;gG-~Xorc<;lI zkB}fB{$c-D2mGA&{rm<*@F5)c3X+6??g~XoEwuzSuch0D@W~P5(2I8v8F$c2$Vw51 zP#YLSBDqtWW^EYBl^QYHF+MA7am6f4DOhwnJM=W9$uvMOsZ%_~?)2C#wb?CkI$7{K zEi)=#|5pFvg^){zK5kpBLjB2kZ+$ZB|L=W|aNwyyb(gC2l7bcpx{E-H@)q6@D6N^xh`{1E%ItF2$eeB_SjI@b2WgTpS1thwg&n`jiIzw^TtXUyB{00($GIq>vbj|}bav}}Q_~wp3>k8!E@hVC;OMUTu|= zAy#vXH*GrUHu7^cNZWe1>y;2(51js9wbu+R3Aa*(wzH9+X0dIsf&gc_x|_LP z>~CF^?(~U}+l~ehe|i>?4eo!xkq&Lk+RR-1duNP#o~>@1x)s&i&u zRaYL@+D&_M|JLI6fHbEr_`U;HgPTh#E3?sB)A$*gqyBgg*ql|a-m*TX5rACbWKCE6 zdeQ`v8m6>g^ugv`p|HY^#1QZrGGUj0^HVDc@{?Q0yhalbBEV{+|HzC^-{&e{5K%z9 z6Bxtnfu1!@Mp+Q&*&~;FOg&*Vm<@4b;{FG0-!UUXX!|)1w}op!B_|7_s~d(+=9Gba zKp8`LaB4D(H=cGcspJ_TjYaOwMb=sGn^gtUVhK!UI~2KKYEE-NC}F>+BEY7IVvy%KRvm00tg!Q`y=er}wpEetX}K@;}(}{s9AzV#q2@ zBy7}->|N?13POrs`;U?(qAG(I$~Gt+Rgw%aNZ_0fs_utVvRJT-7z4!@x36v@=NBX=IqkK{#Kg0w48de@?#Yb4M(Svj5=T+<ONr8-oh7l?Cji@+erqur zFhZ=9|Lk=$`c}v4u`)-!!UI=!9Jo@h&7p4RlS#u! zZ7-prn75JkV?VjptX;@$#`U`{vB!=Z?V`T*FBF>J?vsML7e6@2GbUteMFfX-TUu{2 zLNIG*;dV)8GV8gAgEf#)X3A>p3^CRka1v?~8x^anBhQ=L=LsOl=&pcOYHo98m##ye z34MtGCDK!`ptl?taGMr5q{!zVc? zG00e){TV?`YA9eB;(lA3lXI?RrB4BYQGk?vOmTIUJED=(`_*gtn2DB-t4WW54as*W zb2kD-lWX>lb$+W!VFakki>B^Vc+u$?NLF>)!U%b@Y}gYJ>m2H=^x0=nsE0TF^Yu0h ztgH8-o1%+jCk(+&`|)tTfEVHq0cMeFa{Uz)X$;fCq%Y=SOWML6bYfeP8j5hktL`KK z(18`XrUn&WN9PtFxh&dX`y~YBsmdhi7Kw%tKzM%^VEhdD<_XkulW-x=JN6OPbFI4@ zzDDRN+f=@{0h*MswwOqG6gJ?{NuHx(y-|FUGsxyZ*x0~$MW(eY>vqq4Fh#t7uzw=- zKB?|!0N~!h^AMdLa)oR!Ca#HZ9&Zf)ghuO<^RN)4twRlygHnQG(BE{cDc5E}OF4;xss6gYyV~EcJvJkX)xNWb=@yw!uq0v-sf^rvkp-;?DPWK@*SEw|V;IH=7 zfQqEV_>DjOPT~8X*J|H8=&RnzK4~S7ML~nLX^%s-Vqc^aWy7N$y57qciZGcqy#=zU zs8hcHiI=D$+RB{|62{ohCTiaML6FI4Uhzo5D{Jik@poCs0w7F)*w}F4r0sJ~#u-72 z5bK=ANt=M$Dh5NKnxGsg9NRR?WD-x|FhTwBjd zD<-K>44DB~i%frJOfnzh1R>PRY34kw!6~p3M$JLaD1r@`=h)~Ngks-(gdXh^Q?BTP zZ^Zj5w1AwtuR2$~E7s9iZdF}z%pv1em^V2rM{1tLUY@-+Sc0(9jA|iZWml1;v13=U zHf?y@#mb--7z6$ue>`qjhE~brk$AY-RG90~5wcBbDReXR2)pKg{L>;H(DI`U!MLNQ zY9rFJP@ZQ}jlcMh%WSCo%vf+nd0Gmd*F%KMIe>slCUh)8Ma|;M_I+v#;|ueg9oLg; zq2HtZX%&#F7vdpNlkX?}(C7dGC^y#NB#m4%69RzTNrk%4ol~hSI%>2r6B|*ZkW(*P z;u#s;+faHo{tfy+1L^RzWDi*^JR0iY(zJDB36y_QJ+|E-2x+cY z!V8uLNktH~q>WQZuY!Ap66WP|E!0PA1jK~)^8oJVGbspJs6QL!!-5Qm7 zHYI|_`Actg?vDzdg5{86w@GS$G6ANzff7->6i5pB$T4O}`fZ_;{217Om0gN5zTr12 z5mW{hCzCE-QubjxN$TAE-XgI-8dTY@OZmq`y+y_>dk*(qXF0{nam|q@~i}Utp*k{yurq(DW54hkDT4bbg z=_etM?Nf5W^o-HEu9_?&xEqPg^P^mTxLH8n%u$!mWvFG|{&)jtnU&6|5-`~eaNz0%D1BDo`{ zS1N5(KW5v^2eLdd_%`uaRndF@h0Uo6=M|8?b~KbOLZk{HXEnGmtgZXf2inI*1r%n! zQ3&%RI4r{f&dwW~HwH0Ked9b!k6{>_19H z_Ai>5IChDMY(FfMyG%;30?SQ{iV9KyGru62+Y)~qSQ91}b~}w<&*}R&1c#$O`H@~c z5)2S_eXx}M#N{MuGeQS9@#UJB@;W_j50b}jIhxMPloEFQZdvwxiU^RYycTzgK)-vl3LT&$L8~@68$C8~5_U{cR$E#w*x65(qw&eoL@>%ZHvj zWnEMlSh*(o&oy|J7eJ5OD`ssy%F?*Vp?`Cq;FShyl{ZoKCG5g{y}>usznni#8ki(i zO{w@n{iAj1_ooX@+s*!uW60WcH~*bNOT6z%0jVML5};wVrQp~`Uss_{cO2oud_nNA8^B$?07fJ6?iI)Q zuo9G)O-z)DqstrBqf>B%S05hf-wep0@$BFHKSrkZ{za3D)yVzRz)2{wf8(Wp+xyAM z$rtyx$gi3A=V~V!`Q3;BM0$>*VVtxEM|xDL^gew7ydy3Q6YzD&THRz*q33Ms_D;M- zbCx1Ft#UNB)V3bf`~{ImI72OTp^|bF8?G8#FRj+Biy8ET5#rA3sd|0FR@U(LAJ%w8 zS1%n8Z=Amhw)92rIsof=YVWF4jw&F*j1LG@-`+cR0-~2LqXRH8(Ccne{y#MCPncF64U`0uO zWmi$dlii~1D0rLR{qc|_2M!C$t8^=G7xQY)9!#Y331A|>N)EhmyVdLWL9I3YLJ`7? zZmpqUJB>Ni9oiL)^1IK1UoMyhWE{$9M2M6Xi zPKk7GpMsA6vjZbU7~i+u|J6Nk|Ci!Y3UMUT2|`M;JsNQACdJ%ooo9Yt{?A+0hMpxi znEa~~sxC>rKrU6bd=WRb;%wsH>A#j4{({&1GYSNR57Gama(3)2A;SM>qop}l>Jk2* zn1+C$fIxuwzg3mCU#SOqb-wOCb6mBcYlA5+mt<&_J~sBxc(GQtBFINUO~Mr7<-uu($>P HJ4oML2Lo<@i8BwbL^1~GkG`E7C$SEa_ zF^}Ea+#Je`Xy6;#D0FPnSrR%Y!QGA~NA^{oWmW8C<3dr{x6wWQ{4+bzemqV5W$i5~ z=J0jXZ>uZb>DT@0Ks?4QJ{`z?8JWl3$y;2pj#$XP*pv$>$g(z43{YH9KmmR6<#sIn zA`#=0#sgycaBQ^&}Xba!|KaZ8~b30v~nLt z9%#gz_*=~KD{3t^X~l>480*}PhKN=??g`RV|4Ud{Gyyl187MJ}r(#e+H$GEdI+p1s zq_25h;fV)$EPK%Dw-(G=f`yHB-_tttsC!?k7*#!|4a>`Ahj8nm?&n>NRs%jkZW^3-0P_yMP5&*6a26{MRj1&TPF zyE#|c)5uUHzMWx=rMKpuPih*V=S;W3MzIZTw2uTbr}8`p2bm+Z6Sa%vvWAWSf4H)p(+ zSQ8;EvUa#wqWV+9vmIio(%7wukK2SwjUS8Yl%Rq%=~PU)2$Tvm6`1!r3H@U#_|bB0 zmlT1PS3wPB(b&^+@YY7Y$n4l3mV3-X0$>z|gZp6O*Lhzn&?Gad2ZCF;+#95-Y?#y+ z?*l@Yf=a4w{Px=o!N|3~_XKfk&G;fN>Ps&dp2FpA~qD=0~=!NOS@B#XAKKkND>Y{4>rqxrViKD7;?>j8`R` z&G)3FN|dfsxnaI^!d1G%=>AbTTxZWo;n-DLrQ!sj=f~VAOe5zhGS(dgx|!ls62fbX zV@<7Ck^!}R=`Swr?(7w1rY6Nmq~sfXJ?TiKJLn=&SQdEt9$@0 zA+h1Wbwbri0s-stc8yVq;mRa6@kEf8^KXUz&jcic!+avDvvJFa>k0ioWug=T3oPw; zyj4it&0@>_*uI@2=^+T7sL1_!^aJW@Xfo8aC#3^WtQC7fET8b9C} z*u^ue6Ojn z7@(eskJ2+cNnH9~VyfIh<-|7!je~vGy*odz(sk-u$~SrYF3glruZ*W`{sqnS+9=;Z zh{D@MSG91%lr&ua8%$sJF%y1I<|e;EdfJykY8#D$Hc_81n5`$7;1N|b0tvvPLzSg& zn7!5x?T*@rQUKcUhTIjV(rw*5oQYlm5DbEO?60#mohHfbR$3_x#+PZoYi@Vd4`#YgKyTd^!4n{fN~WZDY61sAOm6 zl!d^i*a01QxpWM9Pcl?&{RgO}uq%ErOk5WpECvnfEh!*YP&1Sl)uTN4hg??Vqs~i5 zYsfufz3?{TtwuBN=`0~Qg1PlWH#OGG$ zLLWU17$v``)CE1cds_7kj8mJ{-+l8{DS|zAQ&3|qpOY=!J|kXUhXue9|H>4gqk|n) z-i34GmxLFj8asb3D#D&=ya*a5`C<=o?G;Ev^LV%;l#nH#O=7Nh@z1Do>j6Q;I5S2P zhg|AZbC&|c7}uSJt57s2IK#rSWuararn-02dkptTjo*R{c5o(bWV}_k3BBnKcE|6l zrHl&ezUyw^DmaMdDFVn<8ZY=7_{u{uW&*F<7Al6};lD(u;SB=RpIwI)PTyL=e25h* zGi{lRT}snjbMK~IUx|EGonH+w;iC2Ws)x>=5_{5$m?K z5(*1jMn%u0V1Y%m@`YS3kskt~`1p(rA4uk;Cs!w^KL$w>MH)+cP6|XKr4FfHIATJH z!EGAK4N>1yFR`-zW|w%ByRe#=&kA&#WyUldDGpt!wf-8SFWiSi!5QZL+l7*CE?u!NW1T$<1rdLJ9y3u{_zvHaM?#Rm4 zFk}^1!ffcrB|XK3gsO-s=wr*sUe&^$yN|KxrA)uW00Gu60%pw_+DcUjW`oW<35OC8 zq2{j8SgC}W$?10pvFU83(SL$%C?Kctu3*cs0aa%q!fjn1%xD*Jrm!F3HGR9-C{b?- zHp(cL;ezXMpL@0-1v0DMWddSDNZ5h?q50cOZyVi#bU3&PWE=(hpVn|M4_KYG5h9LffKNRsfhr^=SYiKg?#r&HNMi2@cd4aYL9lw(5_IvQJ zcB*DD()hUSAD^PdA0y|QrVnqwgI@pUXZXjHq3lG2OU&7sPOxxU$Y3&ytj6Qb=2#cC z;{d-{k|xI*bu+Vy&N+}{i(+1me!M;nshY_*&ZQLTGG*xNw#{RpI`3^eGfHck+*38NRgiGahkFethtVY=czJs#)VVc{T65rhU#3Vf?X)8f0)X{w!J3J{z|Sq|%?)nA+zo?$>L9@o`Kc|*7sJo4UjIqu0Ir~S5k^vEH};6K?-dZ0h*m%-1L zf!VC%YbM1~sZOG5zu&Sh>R;(md*_)kGHP)<;OA44W?y53PI%{&@MEN}9TOiqu+1a3AGetBr$c)Ao3OX>iGxmA;^^_alwS818r4Pn&uYe^;z6dh z)68T|AN=hjNdGpF7n>y+RTAZc9&opTXf zqWfK_dUv=mW{p_vN>|(cIkd(+Jy}qnK{IW%X*3!l`^H~FbAHwof+vLZ0C2ZXN1$v7 zgN&R9c8IO`fkR{6U%ERq8FN<1DQYbAN0-pH7EfcA{A&nhT!Be>jj>J!bNRw4NF|}! z1c70_#fkk!VQ!q1h2ff@`yDyrI1`np>*e#D4-Z~*!T^8#o*$V~!8bWQaie?P@KGBb z8rXc!YDL!$3ZgZZ%;-%~0Kn<+d+{xJ$stQbtN8GWV?MCJvzPU|(E(1z;rFw{&6vy) z3*@y%7Tx8rH-p$boS>bLyod?OKRE8v`QSBvGfY6f}_{Zo1q85xoyOF16n~yHx2W ziydUoYLkJmzq|n&2S(O!ZmLdP1(o1Jsq88cX)x3V-BK5eF&0e_0G!5?U7&3KN0`mc zH&Lt)q8!d_VgzxyL^(@xrbp2y)Hmr^V48));RSfE=*Ly0uh9!$3dv-vMZr2URf@l5zdwLjGZB zugY>7_fd_vbV*Qv1?H~>Z%RD%nEeFSI$n$$Lrpc6g>i4+XdBB!%zM$Bhrz5Swzyg? z$~I~n@~-wTBY3-T&pr+|gC+OHDoR?I(eLWa{Z#Rsh>lc~%u0!&R|s0pA*w<7QZ}{i z*AFr~0F3y~f$MGh_HDL7J_1?SxKL}fWIk!$G}`^{)xh*dZ5kK>xGL9>V`WZZg_ z)^Vm)EQK`yfh5KiR(vb&aHvhich z_5o+{d~0+4BEBqYJXyXBIEb1UgVDs;a!N2$9WA>CbfrWryqT25)S4E4)QXBd*3jN} z?phkAt`1rKW?xoLzEm!*IfkH|P>BtECVr0l8-IGk_`UjE#IWkUGqvyS+dMrCnFl<7RCgSMX^qn|Ld_4iYRldO zY&cHhv)GDo8nKvKwAbfyLR%t?9gG?R7~PSD#4D-;?F&!kV59O}neYut5AGbKwy-(U zqyBi=&Mgj|VIo>$u!DHM`R7O?W8-idbePuxiJMH``6c_5L-chKd}=rGC5Gfrc{f!* zWFEBm?l@_b7kzY7%1RQQbG5V<4=ZlkZ%sF74Q|mKOc7Ak7dP2#quiGcZ0_J%7Q?j{ zv9{WFw;n5G-Mn%r#0R;{jLt{yy}9J6rQ(>X9pJ`7Xy?Zv z=lNit#qXaq?CnElK^zF~sG}U5oCpR0T>FH=ZX}Prju$);?;VOhFH8L3I><9P_A|C+ z{;>~dk%9rrq(snjsEm}oUz2FQ21MCG*e?g)?{!&|eg7PX@I+Q0!hL6C7ZVY|g2E>i zr!Ri2@OfEu$)d52+>+cpgh6Z;cLYCZ&EMR0i<^~4&wEu_bdo;y^6}+U2GIQgW$|Od z_jg{O=pU>0-H$P-EOlWyQy#W0r@@_uT}Lg+!d5NxMii7aT1=|qm6BRaWOf{Pws54v zTu=}LR!V(JzI07>QR;;px0+zq=(s+XH-0~rVbmGp8<)7G+Jf)UYs<$Dd>-K+4}CsD zS}KYLmkbRvjwBO3PB%2@j(vOpm)!JABH_E7X^f#V-bzifSaKtE)|QrczC1$sC<<*Y z$hY*3E10fYk`2W09gM_U<2>+r^+ro$Bqh-O7uSa)cfPE_<#^O) zF+5V;-8LaCLKdIh3UB@idQZL`0Vx8`OE#6*1<;8(zi&E7MWB1S%~HAm%axyIHN2vd zA(pJGm_PraB0Aat3~?obWBs?iSc*NhM!{-l_WNCx4@F7I?)5&oI|z{o@JKd1HZ}zf*#}JjK3$ z-;3V*WJZvUcKvSOBH4c7C{fl8oRw8-vfgKQjNiR|KhQ%k6hWNEke(k8w-Ro| z7Y3)FsY-?7%;VT64vRM)l0%&HI~BXkSAOV#F3Bf#|3QLZM%6C{paqLTb3MU-_)`{R zRdfVQ)uX90VCa3ja$8m;cdtxQ*(tNjIfVb%#TCJWeH?o4RY#LWpyZBJHR| z6G-!4W5O^Z8U}e5GfZ!_M{B``ve{r0Z#CXV0x@~X#Pc;}{{ClY_uw^=wWurj0RKnoFzeY` z;gS!PCLCo*c}-hLc?C&wv&>P1hH75=p#;D3{Q8UZ0ctX!b)_@Ur=WCMEuz>pTs$@s z#7bIutL9Pm2FDb~d+H}uBI#pu6R}T{nzpz9U0XLb9lu@=9bTY&PEyFwhHHtXFX~6C zrcg|qqTk(|MIM%KQ<@j=DOjt|V)+8K26wE_CBNnZTg+Z+s}AU|jp6CFoIptG1{J*# z7Ne~l;ba*=bSwAMQ|Vq#fW~+je4PXA91YFzBubNF?ovIOw-$C-8=Ehed{lGD0}(Id zRe4sh8L>&T%{>8o))he}eE;5_ zxoXk3wX?MyNl-xF!q1d$G?=wp^`@09(jU&X zOqZIBI#dN`2PJNdATR3ivtub|nO$dulSaP|e4)WXF1YAGN1pDQIbIjXFG!oC85Mt; zW$eteoL{y^5t4TMRwP$jNPjZFpGsWnGe=jMMqKtcZm9Y9PFZLi*1p@qoKKub^T@2+ zk$@*KYdQ?Z`}<%4ALwk*Yc{(WTf@#u;as(fvE^9{Gk)lWbJP*SjttWofV0s?AB({~l zZI1hZVWFT~W-T?nfMMcnCS4-#6H-MU7H$KxD;yaM46K4Kc@~Q>xzB+QnD_I`b_l3m zo9pRx46b!p?a^&zCDwygqqV3epjs(s0NQI6ARA1n!Yy-qduipxQ& zUAlqRpNjBS+y-ZheD(!R;F}&^V_}b_gqH%tVZ5%%ziO7k^w=es+wZtK^i*vmrWNLMs{oWu_CIov|s1raZiS)>38>pYu;i+-t zI_DiNe6aA4KTZ2P09qPj(0~K4nUq^0+f(2$g`229zkG4jLzRvJUWE0oF1XHL4t3UN zDH466G56sy9hTZoAJB!C3;@F;ONxEk5u6Mv%zdo}Rq`=* zw1n7MOhfNSV48TS989ArIcj`C%Gk8~93~u>)!Yt2b4ZriKj9x2d`H2HQNJ=I>hkDlcZn zqRj>!;oRMTIOu zx|Zfsu~v76T{z7AC(jxj^c@tnJHZtGPsq$DE!8kqvkDx5W?KUJPL+!Ffpwfa+|5z5 zKPCiOPqZZrAG;2%OH0T$W|`C@C*!Z`@Wkop{CTjB&Tk`+{XPnt`ND`Haz;xV`H^RS zyXYtw@WlqTvToi;=mq1<-|IQ(gcOpU%)b#_46|IuWL#4$oYLbqwuk6=Q@xZaJSKVF zZcHs~ZBl;&lF3=+nK; zF`4gSCeZXlwmC_t4I`#PUNQ*)Uv&oGxMALip|sxv^lyVV73tKI7)+QY5=tEMas{vTD-BaTJ^*Y6gq~PU;F5X!sxqiq$iFCo+Uv7m%1w((=e}Vf*=dtds|6 zbX}91!G?C*KG03eHoN}RZS9DJxa&8YwNCT8?JxMXyZqZr13NA|GB{+vG`08C{V(yy zf*Lw$+tYSU_+dI`3n{bMrPdDb`A=Mkg!O=k>1|*3MC8j~- zXL79J4E=U^H=iBLTeHE_OKzE&dws8RNynsSJ!d;`zK?P92U{f)xvD7VQVosrXZrL+ z6lMVdD1YgL;%(1cq{#bS6yXmp|DS@nax#AqqlZhtUQdh<^2vr5`EpAO

LGYq)sa(w9^3-f}NHy=GR4v%t2YZly3m1G@5y`xBh_HGrD%f z>;|Ty?9FiJAc&UVD(StT4I` zfVQwxhE9bXE6r2mKO8Ag7{L^jCyqQb0QqKDPE=RAgqn8q1O^>(z7h5kE(6va%QqRZ zkIOmp(})rLSS(2{=C12e&@!W2=Jel-^_R``0xHO^+t!(oXbcv5yhD4g*$t_F)_5Dl zSVCgesW%;DtYPCFs{G;GX_o?1J3;QQPPv)rWw;>} zJ&KwnUqwNXloNXlK_+pNDfI~hON#SokVJb&ilg8d7^NWo2ZQymCqQMnjfi>ePibjr z-Z@q!?RGN$Mj}Nk){X_vaj6?Mj$>ACR*z|6MsXy3VZ^PFn@yHkPo(>m(iWepn8SC@ z>D2;R4m+gDRZ=SIX!b+CP(qE=JDIUkn=D$aUu+Ihn9-+k1LS3PreQg0N5eWIG@x${nC3v^7caS>1!PKNAY9J z#}E}Q9w#SP>(GY7Hbj&z4$Li6o5taBO|4+F`yS9zq*LJ<38wy4I>HA9(&GYrk4dLajKGww))BWli6Ln1A^Lda@N~p+snkb9C z@OthI+<##vp8!HVQT4Wk(=@zQ{OvZ$EKWS73+JHb)eYLGD-cqi6^|vd$<+IHuc?Nq zW7JertT~3))4?J|28n$I@nAD0c1%9C&IVhEZX~mUsf{efyS(XNG%ch;!N~d7S(Ri7 zb&=BuON95aVA&kLn6&MVU|x}xPMp7xwWxNU1wS+F6#y}1@^wQZB*(&ecT?RnQcI}Y z2*z!^!D?gDUhc@;M^OpLs4mq>C&p{}OWVv<)S9KMars@0JQ{c_ScGsFo3BJ)Irg++ zAWwypJdTO-_{Uh8m(Z!3KL7K{ZZzKHj;{M8I$mV>k znTM?sa0);^=X^cglL`uC+^J)M7nEa$w=VwFULg~%DJllw+7dJAj3{qnP5i3@wr7%y zjXp?Wl2%Th=my&3u?Q$RV6N5tzKMSPTsc#J+-cDDp~qFB6bL2C8AS7Y3PKtVhdhl) zIaLqH5+OnWPWSt(lQCgkN8lczc-V%_iZ{>#1%Z$N*>lu#S;0MZ$T2Y8Kg!U;hAZj> z6S#%$DQ_`Ic%Zr@?}GgjRXg@qTj^17n`65oJ@Wj0u1X8&+UVd|Xs?J+i_^GZ94m6= zUc96~Q`OJvlKB_Lr15*Yw_PUPEr?f?H&00b^-W%26mD)(n(rGGNfK9~2h=C>p-7BZ zFd&*&Msdu{w~(eyFOglwCPH^Rb}O(N7LtS+nnEwDx*pGD?|&9Si~M43a+*L(b0$5A zv`T`(G3xO;I_sx;FwTP21ZlfDpz zOo?}Vlgf~fo{YWm@n_JyD*frOg{XsvBA~|Tn4V6hu>Gd>89-rblfVJUaGvj6X%NZ} z$tFF9sx=4_$*c~G`9iPLGh@=sV+O{D2-t*K@J7H=`V+oVt}8?04WwU3h1BgS!f%1P zFak-T#7`TtLcR=Yz>g0R!ZQrH!YiZOQN=_V-UyncN1Rc18?KY?#O`v#JK+pq0K$~H z3D@v9DZF42R)b9#BBX{^$DOMlJ!g)Gc za{o-1e%F6NvgKq9tC8pV+9S$;9*zNv{J*)n&dmf~anP1)4~N%~h#c(=B#3*KgzhCKhFdgDoWi2IDog{RVyzK|Y`rCUs3T~pJMmdZJy4?b z&s5G=zhf**(t7Y^oC_mcTsE-{^}wiaoUu&?kojLKs>SJPxjcP>{a5CbXCx92AcBE) zHtqP}LjZ{W>PH?Tu(E0X=%{PBMW@F_?#7b&#!^q`<-5$ur+-q6 z{dn=(^UZw6*3-XM_(=@<1_*i&XM4=0t5u!gm6 z{UlmNGPKgO_;e;q9|#esq~Sq`<}%d{+sRmhvsA{5i*91=tub>OZZ%)xUA#4q$dDyy z1`w4%?OPLg3JeZb#cqSMO?*Xn%|-FCcuH2i2fn_{IFusub6;NQdN|7TD1N?%E8*g? z$apAt@cEe!I%jB=*q$p_3=t_5R0ph%{qaq+QDg!c99Y!Xa!&oDZOeis_ot)gNXr{l zdY$|So2Qed2Y7KMNBrS^E169kG%h<+z{Z_p_;shB!uY)>yAVcK=&!bg`lVg)4T1|7 z0}7FpfydVH4F87K@c!nEG+WGKm{Ouo)Slpl;#qcEIQ0zdMfLA#;dBxYw;p;KoVv6| z3_D5&7rJdG12CnDSvZUW?$UC6^UVSW^|vw|o-_4bz)(w5(3AiVhpeT(|=f#x_}E?s#qHZF#xA6AF_ujl$G z-jHD%q(d2}v2PhXx&6YWps~m(^+RXl91Q#xRRJBhjKl$FG4bk);|ag;ieUZ&!Ii3$ z(iGz1+0m7#g5>ASldBbNZL=ZHh=tmmJt$!71; zIML2GhEz1pg@1rQN(M^_691wAGkJ@Pga_05WuQ6! zG5RkGY2^`@(H~pp7&Ga+Pwh3L!Njj!-rc;^bTIfo5hP@H##1X8xUZJckrx>id`bAd3QUx9GuomqBYZ!uN1-&o zvTxC?;p8vL67&fW8fw(YOqt>L@bdLrEF*3OgYe$4n4{ zEB40LiU#6-0@5jdN`0w}N0qi@c0~oT2FP z)LNk&a82my?jv(tQpiMi$TK_L@lub#lsM$R{Dk?Ya@%%%huZkct~tSWM714c!45k}-ZLVA-bVM`>|_ZBbW_m-7| z3U%xrAhi}n?T(2F{_n4EZ10inkIFl#y09?7$uwBoJgqY8vylwev)fDOn;>0R!aEnV zBz%j0Mqpx~EZU3q@%+oV7;}|vt7$~ou@faEIq{p?FY$XXg&6*K)b_LP=}gi9`Bij3 zN`zEo|B6*|-;>S`rNa^BKRDbDAk>X#MsR`EvL>6bqU@SaDDs z8>bu@3YdRaWs*Te@G-UHjU%F~kTHw5(0PVJ+pwh#ha2u;DB+UMo@A5UYIl#5rtBV- zGX_hIpw}3C@H*Us(Cc-d#-gNrG#w$(9+S=GxO>3SR`SE2fHZ2KrDc#_C^$jI>Y}#; zMwY=R6@+dWi~0RXw(c@3GZ&%~9K(q&ee0Zw;pwL`E_tZak-#8^_b)Dpyi73^he?xV zXJ08&wh5-M&}qy4f7!D&=E)puDD(Nmg1d_(j`4LvxM5x_huNg-pGG%9rYqO6mImyJ@}*3Y>^3OvcnTG%EV1) zq_Ap?Z!Iw__7#D=pOWnQN$gB!Mr0!9yx|g<4icJh{cFOu3B8}&RiYm+Mb;VEK``LK zL(NcpcTiGieOIssSjr?ob}^``nNf&UcJhXyncO9m{6gD$kqSD`S69(aF8dkWz5>!9 zBLe4Sib7Hs2x_L2Ls6Ish$MGVKrGt5+_2zCyP1byaCg3upo+-I}R4&$m)8 zQ7|jc1Z^VWggpuQj*cP;>Zo9LS!VSzrqmZczaf;u`d0J(f%Z9r%An@s!e>n9%y=n!IZ_tVGu{Jmsbp}Fk%HJIU?a+-~bjfLTuH|JExA8EROowzr zqW9{YyZhR0a4clRK>1I4Ncx&WER~{iE;F^$T7K%X@3PGOA%6#Z%p3TS^&M;Dnjw@i z^o!$9nhcsmcHcY4?4j9+ofL_CWsZ4Hcch(rjsGfGD(nsH>w}^ERqGnz%iGj0j{g}h z7wMkJ-2Z2~eS>2!i}0~B63i;>SyFJU2+>VCS^AxaDOx%g6-t0eM^P<3+*z`ztvOqrG3)&#$K?& z_Y0wbWID47@cU`E1A6A&!`aZk0ZE@z-h#l1NqX2#`$Uev2gepW`rf8*!=rD5&;Jb{ zl08rU>dPo=K%-1Ao1~G-@4ve~y5#9E8x;TE0k5d^TC(=Zc>mwjW^c=+U-<9}b0ku~}gj z3sbW>R2M6DR!g#NUP;nxo>)@7*=RP{U18SDop6b2&PHce^&h97@xx3t+VK+!keE#} z;(Uf&89as9k8{$nkLbuB!-d7TP`_VJpL^Xs8OKB~ri$YUbW8fch64}7|0EWoT(TRj{ z*GT<7Y<7DsrCi79ZsM)z#c(!nNOGySOCkY1fAuQOq12&iUVC!a`#O;dBLf=d?&4*B zI~LgAO7E0qxK(uRTM;IgJ}+z^gD+bi-6I!3x{r9`l~%8TRP%UE0V8E*Sz>Nl1NVG<<7(wDHZ+HcOkQm$O&k+vyx)y)x{Pz!U8hS$*m zByc0h6BUI*BOpuL==P+H|Hx%`>7!W+1H!l9vi&)`V zyn2o9{z=lc+VX*!Vh~SF=)L}Z40XeG>LF6cP^b+R$NxSeUqbK^Q*UTalKzP8X%{9@RSCXm_NhF>{=S2 zi}ezam_^P`S!!-cyEW9y7DBbK93roz@Raccy*v}?mKXScU9E_4g;hBU7}zSofAFda zKYEe?{{I54 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index df97d72..cea7a79 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index b740cf1..f5feea6 100644 --- a/gradlew +++ b/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -84,7 +86,8 @@ done # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum diff --git a/gradlew.bat b/gradlew.bat index 25da30d..9d21a21 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -13,6 +13,8 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## From 1444c3e008524b766a847118e882dccff0968249 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 26 Jan 2025 11:11:25 +0000 Subject: [PATCH 15/19] Add a friendly error message for when worlds are encrypted --- .../chunker/cli/messenger/Messenger.java | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/cli/src/main/java/com/hivemc/chunker/cli/messenger/Messenger.java b/cli/src/main/java/com/hivemc/chunker/cli/messenger/Messenger.java index ee87c65..0e3cbdb 100644 --- a/cli/src/main/java/com/hivemc/chunker/cli/messenger/Messenger.java +++ b/cli/src/main/java/com/hivemc/chunker/cli/messenger/Messenger.java @@ -457,7 +457,7 @@ public static boolean startConversionRequest(UUID sessionID, UUID taskID, WorldC write(new ErrorResponse( taskID, false, - "A fatal error occurred during conversion.", + getFriendlyErrorMessage(exception.get()), sessionID.toString(), exception.get().getMessage(), printStackTrace(exception.get()) @@ -599,4 +599,28 @@ public static String printStackTrace(Throwable throwable) { return null; } } + + /** + * Get a friendly error message to show to the user as the main message when conversion fails. + * + * @param throwable the throwable which caused the error. + * @return a user-friendly error message, if one doesn't exist it will just state "A fatal error occurred during + * conversion." + */ + public static String getFriendlyErrorMessage(Throwable throwable) { + // Unwrap CompletionException + if (throwable instanceof CompletionException) { + throwable = throwable.getCause(); + } + + // Handle the case that LevelDB fails to read a marketplace world + if (throwable instanceof IllegalStateException && + throwable.getMessage().equals("CURRENT file does not end with newline")) { + return "The world is either encrypted or corrupted. Chunker is unable to read " + + "marketplace worlds as they are encrypted."; + } + + // Return the default + return "A fatal error occurred during conversion."; + } } \ No newline at end of file From b9fa9063e1c79c2228f0b5eaab22b3eda6b0c94e Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 26 Jan 2025 11:23:25 +0000 Subject: [PATCH 16/19] Fix Bedrock padding chunks when there are no biomes --- .../encoding/bedrock/v1_17_30/writer/ColumnWriter.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_17_30/writer/ColumnWriter.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_17_30/writer/ColumnWriter.java index a419bfd..704231d 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_17_30/writer/ColumnWriter.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/bedrock/v1_17_30/writer/ColumnWriter.java @@ -54,7 +54,8 @@ protected void writeHeightMapBiomes(ChunkerColumn column) throws Exception { List> biomesChunkList = column.getBiomes() == null ? Collections.emptyList() : column.getBiomes().asPalette(); // If the input world wasn't caves and cliffs, we need to pad the chunks at the bottom - if (!converter.level().map(level -> level.getSettings().CavesAndCliffs).orElse(true)) { + // If the chunks are empty, it doesn't need padding + if (!biomesChunkList.isEmpty() && !converter.level().map(level -> level.getSettings().CavesAndCliffs).orElse(true)) { Palette palette = biomesChunkList.get(0); if (palette.isEmpty()) { // Empty palettes are only allowed in Bedrock at the end of a column From 1a4ec3d46f6d87be68674e003052d0df492fda39 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Sun, 26 Jan 2025 11:36:25 +0000 Subject: [PATCH 17/19] Ensure that outputFileName does not repeat underscores/exceed 128 characters --- app/electron/src/session.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/electron/src/session.js b/app/electron/src/session.js index 3832de1..6957d20 100644 --- a/app/electron/src/session.js +++ b/app/electron/src/session.js @@ -732,7 +732,12 @@ export class Session { try { // Use the user provided file name let outputFileName = (this._finalName ?? "output").replaceAll(/[^A-Za-z0-9_\-@]/g, "_"); - if (outputFileName.length === 0) { + + // Ensure that there are not too many underscores from replacement + outputFileName = outputFileName.replace(/_{2,}/g, '_'); + + // If the filename is empty or over 128 characters use "output" + if (outputFileName.length === 0 || outputFileName.length >= 128) { outputFileName = "output"; } outputFileName = outputFileName + (outputType.startsWith("BEDROCK") ? ".mcworld" : ".zip"); From b5dd0148a43da37cfab0fc2c52e56f009f5950d5 Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Mon, 27 Jan 2025 11:08:45 +0000 Subject: [PATCH 18/19] Make Java decompressions errors indicate which column caused the issue --- .../java/base/reader/util/MCAReader.java | 33 +++++++++++-------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/util/MCAReader.java b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/util/MCAReader.java index 80573b8..5790a34 100644 --- a/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/util/MCAReader.java +++ b/cli/src/main/java/com/hivemc/chunker/conversion/encoding/java/base/reader/util/MCAReader.java @@ -94,31 +94,36 @@ public Task readColumn(ChunkCoordPair columnCoordPair, int offset) return Task.async( "Decompressing column data", TaskWeight.HIGH, - () -> decompressColumn(compressionType, compressedColumn) + () -> decompressColumn(columnCoordPair, compressionType, compressedColumn) ); } /** * Decompress a column. * + * @param chunkCoordPair the co-ordinates of the chunk being decompressed (used for exceptions). * @param compressionType the compression type. * @param compressedColumn the column to be decompressed. * @return the decompressed compound tag. * @throws IOException if it failed to decompress / read. */ - protected CompoundTag decompressColumn(byte compressionType, byte[] compressedColumn) throws IOException { - // LZ4 was added in 1.20.5, but there is no harm supporting it here - return switch (compressionType) { - case 0 -> null; // Empty - case 1 -> Tag.readGZipJavaNBT(compressedColumn); // GZip - case 2 -> Tag.readZLibJavaNBT(compressedColumn); // Deflate - Default - case 3 -> Tag.readUncompressedJavaNBT(compressedColumn);// Uncompressed - case 4 -> Tag.readLZ4JavaNBT(compressedColumn); // LZ4 - default -> { - converter.logNonFatalException(new Exception("Unsupported Chunk Compression Type " + compressionType)); - yield null; - } - }; + protected CompoundTag decompressColumn(ChunkCoordPair chunkCoordPair, byte compressionType, byte[] compressedColumn) throws IOException { + try { + // LZ4 was added in 1.20.5, but there is no harm supporting it here + return switch (compressionType) { + case 0 -> null; // Empty + case 1 -> Tag.readGZipJavaNBT(compressedColumn); // GZip + case 2 -> Tag.readZLibJavaNBT(compressedColumn); // Deflate - Default + case 3 -> Tag.readUncompressedJavaNBT(compressedColumn);// Uncompressed + case 4 -> Tag.readLZ4JavaNBT(compressedColumn); // LZ4 + default -> { + converter.logNonFatalException(new Exception("Unsupported Chunk Compression Type " + compressionType)); + yield null; + } + }; + } catch (Exception e) { + throw new IOException("Failed to decompress column %s inside %s".formatted(chunkCoordPair, chunkCoordPair.getRegion()), e); + } } @Override From 0e9d2bbaa5b794b12014ad6cd56173860d8840db Mon Sep 17 00:00:00 2001 From: HiveGames-OSS Date: Mon, 27 Jan 2025 11:18:26 +0000 Subject: [PATCH 19/19] 1.4.5 --- app/electron/package.json | 2 +- app/package-lock.json | 2 +- cli/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/electron/package.json b/app/electron/package.json index 48ebe0d..2e7e4ed 100644 --- a/app/electron/package.json +++ b/app/electron/package.json @@ -1,7 +1,7 @@ { "name": "chunker-electron", "private": true, - "version": "1.4.4", + "version": "1.4.5", "description": "Convert worlds between Java and Bedrock.", "main": "src/index.js", "type": "module", diff --git a/app/package-lock.json b/app/package-lock.json index 5370180..2a10471 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -20,7 +20,7 @@ }, "electron": { "name": "chunker-electron", - "version": "1.4.4", + "version": "1.4.5", "license": "MIT", "dependencies": { "archiver": "^7.0.1", diff --git a/cli/build.gradle.kts b/cli/build.gradle.kts index 811e085..803b3d4 100644 --- a/cli/build.gradle.kts +++ b/cli/build.gradle.kts @@ -36,7 +36,7 @@ dependencies { } group = "com.hivemc.chunker" -version = "1.4.4" +version = "1.4.5" description = "chunker" base.archivesName = "chunker-cli" java.sourceCompatibility = JavaVersion.VERSION_17